| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 1 | Features | 0 |
| 1 | <?php |
||
| 15 | public function testThrowsExceptionUnlessAltapayUsernameSet() |
||
| 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 | |||
| 48 |