Changeset 4924 for trunk/tests/Orm
- Timestamp:
- 09/12/08 10:58:02 (4 months ago)
- Files:
-
- 1 modified
-
trunk/tests/Orm/Hydration/BasicHydrationTest.php (modified) (9 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/Orm/Hydration/BasicHydrationTest.php
r4776 r4924 72 72 73 73 $stmt = new Doctrine_HydratorMockStatement($resultSet); 74 $hydrator = new Doctrine_ HydratorNew($this->_em);74 $hydrator = new Doctrine_ORM_Internal_Hydration_StandardHydrator($this->_em); 75 75 76 76 $result = $hydrator->hydrateResultSet($this->_createParserResult( … … 159 159 160 160 $stmt = new Doctrine_HydratorMockStatement($resultSet); 161 $hydrator = new Doctrine_ HydratorNew($this->_em);161 $hydrator = new Doctrine_ORM_Internal_Hydration_StandardHydrator($this->_em); 162 162 163 163 $result = $hydrator->hydrateResultSet($this->_createParserResult( … … 255 255 256 256 $stmt = new Doctrine_HydratorMockStatement($resultSet); 257 $hydrator = new Doctrine_ HydratorNew($this->_em);257 $hydrator = new Doctrine_ORM_Internal_Hydration_StandardHydrator($this->_em); 258 258 259 259 $result = $hydrator->hydrateResultSet($this->_createParserResult( … … 348 348 349 349 $stmt = new Doctrine_HydratorMockStatement($resultSet); 350 $hydrator = new Doctrine_ HydratorNew($this->_em);350 $hydrator = new Doctrine_ORM_Internal_Hydration_StandardHydrator($this->_em); 351 351 352 352 $result = $hydrator->hydrateResultSet($this->_createParserResult( … … 488 488 489 489 $stmt = new Doctrine_HydratorMockStatement($resultSet); 490 $hydrator = new Doctrine_ HydratorNew($this->_em);490 $hydrator = new Doctrine_ORM_Internal_Hydration_StandardHydrator($this->_em); 491 491 492 492 $result = $hydrator->hydrateResultSet($this->_createParserResult( … … 663 663 664 664 $stmt = new Doctrine_HydratorMockStatement($resultSet); 665 $hydrator = new Doctrine_ HydratorNew($this->_em);665 $hydrator = new Doctrine_ORM_Internal_Hydration_StandardHydrator($this->_em); 666 666 667 667 $result = $hydrator->hydrateResultSet($this->_createParserResult( … … 828 828 829 829 $stmt = new Doctrine_HydratorMockStatement($resultSet); 830 $hydrator = new Doctrine_ HydratorNew($this->_em);830 $hydrator = new Doctrine_ORM_Internal_Hydration_StandardHydrator($this->_em); 831 831 832 832 $result = $hydrator->hydrateResultSet($this->_createParserResult( … … 919 919 920 920 $stmt = new Doctrine_HydratorMockStatement($resultSet); 921 $hydrator = new Doctrine_ HydratorNew($this->_em);921 $hydrator = new Doctrine_ORM_Internal_Hydration_StandardHydrator($this->_em); 922 922 923 923 if ($name == 'result1') { … … 934 934 $stmt, $queryComponents, $tableAliasMap, Doctrine::HYDRATE_SINGLE_SCALAR)); 935 935 $this->fail(); 936 } catch (Doctrine_ Hydrator_Exception $ex) {}936 } catch (Doctrine_ORM_Exceptions_HydrationException $ex) {} 937 937 } 938 938