db = ezcDbInstance::get(); } catch ( Exception $e ) { $this->markTestSkipped(); } $this->testFilesDir = dirname( __FILE__ ) . '/testfiles/'; $this->tempDir = $this->createTempDir( 'ezcDatabaseSqliteTest' ); $queryStr = "SELECT name FROM sqlite_master WHERE type='table' UNION ALL SELECT name FROM sqlite_temp_master WHERE type='table' ORDER BY name;"; $tables = $this->db->query( $queryStr )->fetchAll(); array_walk( $tables, create_function( '&$item,$key', '$item = $item[0];' ) ); foreach ( $tables as $tableName ) { if ($tableName == 'sqlite_sequence') // clear sqlite_sequence table as it // automatically created by SQLite and couldn't be droped { $this->db->query( "DELETE FROM sqlite_sequence" ); } else { $this->db->query( "DROP TABLE '$tableName'" ); } } } public static function suite() { return new PHPUnit_Framework_TestSuite( 'ezcDatabaseSchemaSqliteTest' ); } } ?>