| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 28 | public function testUserLoadUnlessClientEntitySet() |
||
| 29 | { |
||
| 30 | $loader = new SaasProviderExtension(); |
||
| 31 | $config = $this->getEmptyConfig(); |
||
| 32 | unset($config['client_entity']); |
||
| 33 | |||
| 34 | $this->expectException(InvalidConfigurationException::class); |
||
| 35 | $loader->load(array($config), new ContainerBuilder()); |
||
| 36 | } |
||
| 53 |