Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
74 | public function testValidConfig(string $description, array $config, array $expected) |
||
75 | { |
||
76 | $cfg = new Configuration(); |
||
77 | $tree = $cfg->getConfigTreeBuilder()->buildTree(); |
||
78 | $result = $tree->finalize($tree->normalize($config)); |
||
79 | |||
80 | self::assertSame($expected, $result, $description); |
||
81 | } |
||
83 |