DbTest::testDbMysql PHP Method

testDbMysql() public method

public testDbMysql ( )
    public function testDbMysql()
    {
        require 'unit-tests/config.db.php';
        if (!empty($configMysql)) {
            $connection = new Phalcon\Db\Adapter\Pdo\Mysql($configMysql);
            $this->_executeTests($connection);
        } else {
            $this->markTestSkipped("Skipped");
        }
    }