for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Alpixel\Bundle\CMSBundle\Tests\Functional;
use Symfony\Bundle\FrameworkBundle\Tests\Functional\WebTestCase;
/**
* @author Benjamin HUBERT <[email protected]>
*/
class BaseTestCase extends WebTestCase
{
protected static function createKernel(array $options = [])
return new AppKernel(
isset($options['config']) ? $options['config'] : 'config.yml'
);
}