Speed up unit tests

This commit is contained in:
Timothy Warren 2012-03-09 13:15:56 -05:00
parent c61df13fbc
commit f8153dcdf8
1 changed files with 5 additions and 4 deletions

View File

@ -111,7 +111,7 @@ SQL;
function TestCommitTransaction() function TestCommitTransaction()
{ {
$this->TestCreateTransaction(); $res = $this->db->beginTransaction();
$sql = 'INSERT INTO "create_test" ("id", "key", "val") VALUES (10, 12, 14)'; $sql = 'INSERT INTO "create_test" ("id", "key", "val") VALUES (10, 12, 14)';
$this->db->query($sql); $this->db->query($sql);
@ -122,7 +122,7 @@ SQL;
function TestRollbackTransaction() function TestRollbackTransaction()
{ {
$this->TestCreateTransaction(); $res = $this->db->beginTransaction();
$sql = 'INSERT INTO "create_test" ("id", "key", "val") VALUES (182, 96, 43)'; $sql = 'INSERT INTO "create_test" ("id", "key", "val") VALUES (182, 96, 43)';
$this->db->query($sql); $this->db->query($sql);
@ -174,7 +174,8 @@ SQL;
} }
function TestDeleteTable() // This is really time intensive ! Run only when needed
/*function TestDeleteTable()
{ {
//Make sure the table exists to delete //Make sure the table exists to delete
$dbs = $this->db->get_tables(); $dbs = $this->db->get_tables();
@ -187,6 +188,6 @@ SQL;
//Check //Check
$dbs = $this->db->get_tables(); $dbs = $this->db->get_tables();
$this->assertFalse(in_array('create_test', $dbs)); $this->assertFalse(in_array('create_test', $dbs));
} }*/
} }