Changeset 4628 for trunk/tests/Orm
- Timestamp:
- 07/04/08 17:32:19 (6 months ago)
- Location:
- trunk/tests/Orm
- Files:
-
- 2 modified
-
Query/DqlGenerationTest.php (modified) (1 diff)
-
UnitOfWorkTest.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/Orm/Query/DqlGenerationTest.php
r4523 r4628 30 30 * @license http://www.opensource.org/licenses/lgpl-license.php LGPL 31 31 * @link http://www.phpdoctrine.org 32 * @since 1.032 * @since 2.0 33 33 * @version $Revision$ 34 34 */ -
trunk/tests/Orm/UnitOfWorkTest.php
r4524 r4628 10 10 parent::setUp(); 11 11 $this->_user = new ForumUser(); 12 $this->_unitOfWork = $this->_em->getUnitOfWork();12 $this->_unitOfWork = new Doctrine_Connection_UnitOfWork($this->_em); 13 13 } 14 14