Conditions | 1 |
Paths | 1 |
Total Lines | 20 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
36 | public function testOptions(): void |
||
37 | { |
||
38 | $processor = new Processor(); |
||
39 | |||
40 | $config = $processor->processConfiguration(new Configuration(), [[ |
||
41 | 'defaults' => [ |
||
42 | 'foo' => 'bar', |
||
43 | 'bar' => 'baz', |
||
44 | ], |
||
45 | ]]); |
||
46 | |||
47 | $expected = [ |
||
48 | 'defaults' => [ |
||
49 | 'foo' => 'bar', |
||
50 | 'bar' => 'baz', |
||
51 | ], |
||
52 | ]; |
||
53 | |||
54 | static::assertSame($expected, $config); |
||
55 | } |
||
56 | } |
||
57 |