Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
14 | public function testProcessedConfiguration($configs, $expectedConfig) |
||
15 | { |
||
16 | $processor = new Processor(); |
||
17 | $configuration = new Configuration(); |
||
18 | $config = $processor->processConfiguration($configuration, $configs); |
||
19 | self::assertSame($expectedConfig, $config); |
||
20 | } |
||
58 |