Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | public function testThrowsExceptionUnlessAltapayUsernameSet() |
||
16 | { |
||
17 | $this->expectException(InvalidConfigurationException::class); |
||
18 | |||
19 | $loader = new LoevgaardDandomainStockExtension(); |
||
20 | $config = $this->getEmptyConfig(); |
||
21 | unset($config['dandomain_order_state_ids']); |
||
22 | $loader->load([$config], new ContainerBuilder()); |
||
23 | } |
||
24 | |||
48 |