db = NULL; } // -------------------------------------------------------------------------- public function testGetTables() { $tables = $this->db->get_tables(); $this->assertTrue(is_array($tables)); } // -------------------------------------------------------------------------- public function testGetSystemTables() { $tables = $this->db->get_system_tables(); $this->assertTrue(is_array($tables)); } // -------------------------------------------------------------------------- public function testBackupData() { $this->assertTrue(is_string($this->db->util->backup_data(array('create_delete', TRUE)))); } // -------------------------------------------------------------------------- public function testGetColumns() { $cols = $this->db->get_columns('test'); $this->assertTrue(is_array($cols)); } // -------------------------------------------------------------------------- public function testGetTypes() { $types = $this->db->get_types(); $this->assertTrue(is_array($types)); } // -------------------------------------------------------------------------- public function testGetFKs() { $keys = $this->db->get_fks('create_test'); $this->assertTrue(is_array($keys)); } // -------------------------------------------------------------------------- public function testGetIndexes() { $keys = $this->db->get_indexes('test'); $this->assertTrue(is_array($keys)); } } // End of db_test.php