| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 41 | public function testGetByPath($key, $expected){ |
||
| 42 | $occRunnerMock = $this->getOccRunnerMock(json_encode($this->config)); |
||
| 43 | $configReader = new ConfigReader($occRunnerMock); |
||
| 44 | $configReader->init(); |
||
| 45 | $value = $configReader->getByPath($key); |
||
| 46 | $this->assertEquals($expected, $value); |
||
| 47 | } |
||
| 48 | |||
| 64 |