Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | public function testNoExplicitConfigProvided() |
||
15 | { |
||
16 | $configuration = new Configuration(); |
||
17 | |||
18 | $processor = new Processor(); |
||
19 | $config = $processor->processConfiguration($configuration, array()); |
||
20 | |||
21 | $this->assertArrayHasKey('enabled', $config); |
||
22 | $this->assertTrue($config['enabled']); |
||
23 | } |
||
24 | |||
40 |