| Total Complexity | 3 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 12 | class ConfigurationTest extends TestCase |
||
| 13 | { |
||
| 14 | public function testDefaultConfig() |
||
| 23 | } |
||
| 24 | |||
| 25 | public function testCachePool() |
||
| 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 | } |
||
| 38 | |||
| 39 | public function testCacheService() |
||
| 51 | } |
||
| 52 | } |
||
| 53 |