Conditions | 1 |
Paths | 1 |
Total Lines | 16 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
20 | public function testOptions(): void |
||
21 | { |
||
22 | $processor = new Processor(); |
||
23 | |||
24 | $config = $processor->processConfiguration(new Configuration(), [[ |
||
25 | ]]); |
||
26 | |||
27 | $expected = [ |
||
28 | 'http' => [ |
||
29 | 'client' => 'httplug.client.default', |
||
30 | 'message_factory' => 'httplug.message_factory.default', |
||
31 | ], |
||
32 | ]; |
||
33 | |||
34 | $this->assertSame($expected, $config); |
||
35 | } |
||
36 | } |
||
37 |