1 | <?php |
||
12 | class GloobyTaskExtensionTest extends \PHPUnit_Framework_TestCase |
||
13 | { |
||
14 | public function testUnConfigured() |
||
15 | { |
||
16 | $config = Yaml::parse(file_get_contents(__DIR__.'/fixtures/config.yml')); |
||
17 | |||
18 | $containerBuilder = new ContainerBuilder(); |
||
19 | $containerBuilder->setParameter('kernel.debug', true); |
||
20 | |||
21 | $extension = new GloobyTaskExtension(); |
||
22 | |||
23 | $extension->load($config, $containerBuilder); |
||
24 | } |
||
25 | } |
||
26 |