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