diff --git a/tests/QueryTestCase.php b/tests/QueryTestCase.php index adc306a85..c0bfd499a 100644 --- a/tests/QueryTestCase.php +++ b/tests/QueryTestCase.php @@ -1,9 +1,41 @@ . + */ + +/** + * Doctrine_Query_TestCase + * + * @package Doctrine + * @author Konsta Vesterinen + * @license http://www.opensource.org/licenses/lgpl-license.php LGPL + * @category Object Relational Mapping + * @link www.phpdoctrine.com + * @since 1.0 + * @version $Revision$ + */ +class Doctrine_Query_TestCase extends Doctrine_UnitTestCase +{ public function prepareTables() { - $this->tables[] = "Forum_Category"; - $this->tables[] = "Forum_Entry"; - $this->tables[] = "Forum_Board"; + $this->tables[] = "Forum_Category"; + $this->tables[] = "Forum_Entry"; + $this->tables[] = "Forum_Board"; $this->tables[] = "Forum_Thread"; $this->tables[] = "ORM_TestEntry"; @@ -666,10 +698,10 @@ class Doctrine_Query_TestCase extends Doctrine_UnitTestCase { // the following line is possible since doctrine uses identityMap - $this->assertEqual($entries[0]->Log_Status, $entries[1]->Log_Status); + $this->assertEqual($entries[0]->Log_Status->getOID(), $entries[1]->Log_Status->getOID()); $entries[0]->Log_Status->delete(); - $this->assertEqual($entries[0]->Log_Status, $entries[1]->Log_Status); + $this->assertEqual($entries[0]->Log_Status->getOID(), $entries[1]->Log_Status->getOID()); $this->assertEqual($entries[0]->Log_Status->getState(), Doctrine_Record::STATE_TCLEAN); // clear the identity maps