DbProfilerTest::testDbSqlite PHP Method

testDbSqlite() public method

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