1
0
mirror of https://github.com/ToxicCrack/PrintABrick.git synced 2025-05-18 13:10:08 -07:00
PrintABrick/tests/AppBundle/Controller/BaseControllerTest.php

19 lines
445 B
PHP

<?php
namespace Tests\AppBundle\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');
}
}