1
0
mirror of https://github.com/ToxicCrack/PrintABrick.git synced 2025-05-16 20:30:09 -07:00
PrintABrick/tests/FrontBundle/Controller/BaseControllerTest.php
2017-06-21 22:20:51 +02:00

19 lines
447 B
PHP

<?php
namespace Tests\FrontBundle\Controller;
use Liip\FunctionalTestBundle\Test\WebTestCase;
use Tests\AppBundle\Fixtures\LoadBaseData;
abstract class BaseControllerTest extends WebTestCase
{
public function setUp()
{
// If you are using the Doctrine Fixtures Bundle you could load these here
$this->loadFixtures([
LoadBaseData::class
]);
$this->runCommand('fos:elastica:populate');
}
}