DbProfilerTest::testDbPostgresql PHP Method

testDbPostgresql() public method

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