Added more Firebird tests

This commit is contained in:
Timothy Warren 2012-04-09 10:15:27 -04:00
parent 4225dfa6e6
commit 700ae60110
2 changed files with 21 additions and 0 deletions

View File

@ -167,4 +167,25 @@ SQL;
$table_exists = in_array('create_test', $this->tables);
$this->assertFalse($table_exists);
}*/
function TestGetSequences()
{
$this->assertTrue(is_array($this->db->get_sequences()));
}
function TestGetProcedures()
{
$this->assertTrue(is_array($this->db->get_procedures()));
}
function TestGetFunctions()
{
$this->assertTrue(is_array($this->db->get_functions()));
}
function TestGetTriggers()
{
$this->assertTrue(is_array($this->db->get_triggers()));
}
}

Binary file not shown.