Changeset 3931 for trunk/tests/Orm

Show
Ignore:
Timestamp:
03/05/08 11:24:33 (10 months ago)
Author:
romanb
Message:

refactorings, a bug fix (#786) and improved performance for the hydration of results from polymorphic queries.

Location:
trunk/tests/Orm
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/tests/Orm/AllTests.php

    r3718 r3931  
    99require_once 'Orm/Component/AllTests.php'; 
    1010require_once 'Orm/Ticket/AllTests.php'; 
     11require_once 'Orm/UnitOfWorkTestCase.php'; 
    1112 
    1213class Orm_AllTests 
     
    2122        $suite = new Doctrine_OrmTestSuite('Doctrine Orm'); 
    2223 
     24        $suite->addTestSuite('Orm_UnitOfWorkTestCase'); 
    2325        $suite->addTest(Orm_Component_AllTests::suite()); 
    2426        $suite->addTest(Orm_Ticket_AllTests::suite()); 
  • trunk/tests/Orm/Component/AccessTest.php

    r3890 r3931  
    4545    } 
    4646 
    47     public function testAccessorOverridePerformance() { 
     47    /*public function testAccessorOverridePerformance() { 
    4848        $this->user->username; 
    4949        $start = microtime(true); 
     
    5353        $end = microtime(true); 
    5454        echo ($end - $start) . " seconds" . PHP_EOL; 
    55     } 
     55    }*/ 
    5656 
    5757    /**