| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 10 | class ConfigurationResolverTest extends TestCase |
||
| 11 | { |
||
| 12 | public function testUnknwonKey() |
||
| 13 | { |
||
| 14 | $container = $this->createMock(ContainerInterface::class); |
||
| 15 | |||
| 16 | $resolver = new ConfigurationResolver($container); |
||
| 17 | |||
| 18 | $this->assertNull($resolver->getConfiguration('unknown')); |
||
| 19 | } |
||
| 20 | |||
| 21 | public function testGetConfig() |
||
| 30 | } |
||
| 31 | } |
||
| 32 |