| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | public function testGetDriverUnavailableConfiguration() |
||
| 23 | { |
||
| 24 | $cfg = new EntityManagerConfiguration(new DefaultApplicationConfiguration( |
||
| 25 | ['ORM_TEST_DRIVER' => 'not_registered_driver'] |
||
| 26 | ), 'test'); |
||
| 27 | |||
| 28 | $this->expectException(\InvalidArgumentException::class); |
||
| 29 | $cfg->getDriverConfiguration(); |
||
| 30 | } |
||
| 32 |