| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 25 | public function test_cache_pool() |
||
| 26 | { |
||
| 27 | $globalconfig = [ |
||
| 28 | 'cache' => [ |
||
| 29 | 'pool' => 'ServiceID' |
||
| 30 | ] |
||
| 31 | ]; |
||
| 32 | |||
| 33 | $processor = new Processor(); |
||
| 34 | $config = $processor->processConfiguration(new Configuration(), [$globalconfig]); |
||
| 35 | |||
| 36 | $this->assertEquals($globalconfig, $config); |
||
| 37 | } |
||
| 53 |