Files
core/tests/BootstrapTest.php
T
2016-05-19 22:05:59 -07:00

17 lines
336 B
PHP

<?php
declare(strict_types=1);
namespace LotGD\Core\Tests;
use LotGD\Core\Bootstrap;
class BootstrapTest extends \PHPUnit_Framework_TestCase
{
public function testGame()
{
$g = Bootstrap::createGame();
$this->assertNotNull($g->getEntityManager());
$this->assertNotNull($g->getEventManager());
}
}