DbTest::testDbPostgresql PHP Méthode

testDbPostgresql() public méthode

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