| Conditions | 1 |
| Paths | 1 |
| Total Lines | 16 |
| Code Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | public function testLoadDefault() |
||
| 18 | { |
||
| 19 | $this->load(array( |
||
| 20 | 'webDir' => '%kernel.root_dir%/../customWeb', |
||
| 21 | 'defaults' => array( |
||
| 22 | 'foo' => 'bar', |
||
| 23 | 'bar' => 'baz', |
||
| 24 | ), |
||
| 25 | )); |
||
| 26 | |||
| 27 | $this->assertContainerBuilderHasParameter('core23.dompdf_web', '%kernel.root_dir%/../customWeb'); |
||
| 28 | $this->assertContainerBuilderHasParameter('core23.dompdf_options', array( |
||
| 29 | 'foo' => 'bar', |
||
| 30 | 'bar' => 'baz', |
||
| 31 | )); |
||
| 32 | } |
||
| 33 | |||
| 41 |