1 | <?php |
||
13 | class LoevgaardDandomainConsignmentExtensionTest extends TestCase |
||
14 | { |
||
15 | public function testThrowsInvalidConfigException() |
||
16 | { |
||
17 | $this->expectException(InvalidConfigurationException::class); |
||
18 | |||
19 | $loader = new LoevgaardDandomainConsignmentExtension(); |
||
20 | $config = $this->getEmptyConfig(); |
||
21 | unset($config['report_dir']); |
||
22 | $loader->load([$config], new ContainerBuilder()); |
||
23 | } |
||
24 | |||
25 | public function testGettersSetters() |
||
34 | |||
35 | public function testThrowsLogicException() |
||
42 | |||
43 | /** |
||
44 | * @return array |
||
45 | */ |
||
46 | protected function getEmptyConfig() |
||
55 | } |
||
56 |