Changeset 3890 for trunk/tests_old/DoctrineTest
- Timestamp:
- 02/23/08 22:04:39 (11 months ago)
- Location:
- trunk/tests_old/DoctrineTest
- Files:
-
- 2 modified
-
Doctrine_UnitTestCase.php (modified) (1 diff)
-
UnitTestCase.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests_old/DoctrineTest/Doctrine_UnitTestCase.php
r3882 r3890 301 301 $this->init = true; 302 302 } 303 304 public function tearDown() 305 { 306 /*foreach ($this->tables as $table) { 307 foreach ($this->conn->getMapper($table)->getRepository() as $obj) { 308 $obj->free(); 309 } 310 }*/ 311 } 303 312 } -
trunk/tests_old/DoctrineTest/UnitTestCase.php
r3549 r3890 117 117 if (substr($method, 0, 4) === 'test') { 118 118 $this->setUp(); 119 120 119 $this->$method(); 120 $this->tearDown(); 121 121 } 122 122 } 123 123 } 124 125 public function setUp() {} 126 public function tearDown() {} 127 124 128 public function getMessages() 125 129 {