Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function testCompilerPassCollectsValidServices() |
||
19 | { |
||
20 | $twig = new Definition(); |
||
21 | $this->setDefinition('twig', $twig); |
||
22 | |||
23 | $this->compile(); |
||
24 | |||
25 | $this->assertContainerBuilderHasServiceDefinitionWithMethodCall( |
||
26 | 'twig', |
||
27 | 'addRuntimeLoader', |
||
28 | array( |
||
29 | new Reference('netgen_open_graph.templating.twig.runtime.loader'), |
||
30 | ) |
||
31 | ); |
||
32 | } |
||
33 | |||
42 |