| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 11 | 
| Code Lines | 9 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 0 | ||
| 1 | <?php | ||
| 47 | public function testWrongDriverCreation() | ||
| 48 |     { | ||
| 49 | $driver = DriverFactory::create([ | ||
|  | |||
| 50 | "dbhost" => "localhost", | ||
| 51 | "dbuser" => "root", | ||
| 52 | "dbpass" => "", | ||
| 53 | "dbname" => "test", | ||
| 54 | "dbchar" => "utf8", | ||
| 55 | "dbport" => "3306", | ||
| 56 | 'driver' => 'fooBarDriver', | ||
| 57 | "auto_connect" => false | ||
| 58 | ]); | ||
| 60 | } |