| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 43 | function it_builds(ContainerBuilder $container) |
||
| 44 | { |
||
| 45 | $container->getParameter('kernel.bundles')->shouldBeCalled()->willReturn([ |
||
| 46 | 'BenGorUserBundle' => 'BenGorUser\\UserBundle\\BenGorUserBundle', |
||
| 47 | 'SwiftmailerBundle' => 'Symfony\\Bundle\\SwiftmailerBundle\\SwiftmailerBundle', |
||
| 48 | ]); |
||
| 49 | |||
| 50 | $this->build($container); |
||
| 51 | } |
||
| 52 | } |
||
| 53 |