Changeset 3931 for trunk/tests_old/Ticket
- Timestamp:
- 03/05/08 11:24:33 (10 months ago)
- Files:
-
- 1 modified
-
trunk/tests_old/Ticket/428TestCase.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests_old/Ticket/428TestCase.php
r3882 r3931 14 14 class Doctrine_Ticket_428_TestCase extends Doctrine_UnitTestCase 15 15 { 16 private $_albums; 17 16 18 public function prepareTables() 17 19 { … … 37 39 $albums->save(); 38 40 $this->assertEqual(count($albums[0]->Song), 4); 41 $this->_albums = $albums; 39 42 } 40 43 41 44 public function testAggregateValueMappingSupportsLeftJoins() 42 45 { 46 foreach ($this->_albums as $album) { 47 $album->clearRelated(); 48 } 49 43 50 $q = new Doctrine_Query(); 44 51