Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
34 | public function testProcessSuccessful() |
||
35 | { |
||
36 | $this->containerBuilder->setParameter('templating.engines', ['php']); |
||
37 | |||
38 | $this->containerBuilder |
||
39 | ->register('front_render_bundle.render_subscriber', RenderSubscriber::class); |
||
40 | |||
41 | $this->compilerPass->process($this->containerBuilder); |
||
42 | |||
43 | $this->assertFalse($this->containerBuilder->hasDefinition('front_render_bundle.render_subscriber')); |
||
44 | } |
||
45 | } |
||
46 |