* @covers \JKingWeb\Arsse\Db\MySQL\ExceptionBuilder */ class TestCreation extends \JKingWeb\Arsse\Test\AbstractTest { public function setUp() { if (!Driver::requirementsMet()) { $this->markTestSkipped("PDO-MySQL extension not loaded"); } } public function testFailToConnect() { // for the sake of simplicity we don't distinguish between failure modes, but the MySQL-supplied error messages do self::setConf([ 'dbMySQLHost' => "example.invalid", ]); $this->assertException("connectionFailure", "Db"); new Driver; } }