| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | public function testConfiguration(): void |
||
| 13 | { |
||
| 14 | $processor = new Processor(); |
||
| 15 | $configuration = new Configuration(); |
||
| 16 | |||
| 17 | $this->assertInstanceOf(ConfigurationInterface::class, $configuration); |
||
| 18 | |||
| 19 | $configs = $processor->processConfiguration($configuration, []); |
||
| 20 | |||
| 21 | $this->assertSame(['clients' => ['default' => ['$parameters' => [], '$options' => []]]], $configs); |
||
| 22 | } |
||
| 24 |