Changeset 4219 for trunk/tests_old/Query
- Timestamp:
- 04/12/08 21:11:11 (9 months ago)
- Location:
- trunk/tests_old/Query
- Files:
-
- 2 modified
-
LimitTestCase.php (modified) (2 diffs)
-
ReferenceModelTestCase.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests_old/Query/LimitTestCase.php
r3882 r4219 224 224 $this->assertEqual(count($user->Group), 3); 225 225 226 $this->connection-> flush();226 $this->connection->unitOfWork->saveAll(); 227 227 228 228 $this->assertEqual($user->Group[0]->name, "Action Actors"); … … 281 281 $coll[3]->Tag[0]->tag = "Other tag"; 282 282 $coll[3]->name = "photo 4"; 283 $this->connection-> flush();283 $this->connection->unitOfWork->saveAll(); 284 284 285 285 $q = new Doctrine_Query(); -
trunk/tests_old/Query/ReferenceModelTestCase.php
r3882 r4219 58 58 $category->Subcategory[1]->Subcategory[1]->name = 'Sub 2 Sub 2'; 59 59 60 $this->connection-> flush();60 $this->connection->unitOfWork->saveAll(); 61 61 $this->connection->clear(); 62 62