| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public function testDefaultOptions() |
||
| 19 | { |
||
| 20 | $processor = new Processor(); |
||
| 21 | |||
| 22 | $config = $processor->processConfiguration(new Configuration(), array(array( |
||
| 23 | ))); |
||
| 24 | |||
| 25 | $expected = array( |
||
| 26 | 'webDir' => '%kernel.root_dir%/../web', |
||
| 27 | 'defaults' => array(), |
||
| 28 | ); |
||
| 29 | |||
| 30 | $this->assertSame($expected, $config); |
||
| 31 | } |
||
| 32 | |||
| 56 |