Changeset 3931 for trunk/tests/Orm
- Timestamp:
- 03/05/08 11:24:33 (10 months ago)
- Location:
- trunk/tests/Orm
- Files:
-
- 2 modified
-
AllTests.php (modified) (2 diffs)
-
Component/AccessTest.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/Orm/AllTests.php
r3718 r3931 9 9 require_once 'Orm/Component/AllTests.php'; 10 10 require_once 'Orm/Ticket/AllTests.php'; 11 require_once 'Orm/UnitOfWorkTestCase.php'; 11 12 12 13 class Orm_AllTests … … 21 22 $suite = new Doctrine_OrmTestSuite('Doctrine Orm'); 22 23 24 $suite->addTestSuite('Orm_UnitOfWorkTestCase'); 23 25 $suite->addTest(Orm_Component_AllTests::suite()); 24 26 $suite->addTest(Orm_Ticket_AllTests::suite()); -
trunk/tests/Orm/Component/AccessTest.php
r3890 r3931 45 45 } 46 46 47 public function testAccessorOverridePerformance() {47 /*public function testAccessorOverridePerformance() { 48 48 $this->user->username; 49 49 $start = microtime(true); … … 53 53 $end = microtime(true); 54 54 echo ($end - $start) . " seconds" . PHP_EOL; 55 } 55 }*/ 56 56 57 57 /**