mirror of
https://github.com/ToxicCrack/PrintABrick.git
synced 2025-05-16 20:30:09 -07:00
19 lines
447 B
PHP
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');
|
|
}
|
|
} |