for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Happyr\AutoFallbackTranslationBundle\Tests\Functional;
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class BaseTestCase extends WebTestCase
{
protected static function getKernelClass()
require_once __DIR__.'/app/AppKernel.php';
return 'Happyr\AutoFallbackTranslationBundle\Tests\Functional\app\AppKernel';
}
protected static function createKernel(array $options = [])
$class = self::getKernelClass();
return new $class(
isset($options['config']) ? $options['config'] : 'default.yml'
);