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 test_default_config() |
||
15 | { |
||
16 | $globalconfig = [ |
||
17 | ]; |
||
18 | |||
19 | $processor = new Processor(); |
||
20 | $config = $processor->processConfiguration(new Configuration(), [$globalconfig]); |
||
21 | |||
22 | $this->assertEquals([], $config); |
||
23 | } |
||
24 | |||
25 | public function test_cache_pool() |
||
37 | } |
||
38 | |||
39 | public function test_cache_service() |
||
51 | } |
||
52 | } |
||
53 |