Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
20 | public function testLoadService() |
||
21 | { |
||
22 | $container = new ContainerBuilder(); |
||
23 | $container->setParameter('kernel.debug', false); |
||
24 | $extension = new BreadcrumbsExtension(); |
||
25 | $extension->load(array(), $container); |
||
26 | $this->assertTrue($container->has('breadcrumbs_builder')); |
||
27 | } |
||
28 | } |
||
29 |