fixed testcase
This commit is contained in:
parent
34cfa2f255
commit
708ef9f217
1 changed files with 3 additions and 3 deletions
|
@ -18,14 +18,14 @@ class Orm_UnitOfWorkTestCase extends Doctrine_OrmTestCase
|
||||||
public function testTransientEntityIsManaged()
|
public function testTransientEntityIsManaged()
|
||||||
{
|
{
|
||||||
$this->assertTrue($this->_unitOfWork->isManaged($this->_user));
|
$this->assertTrue($this->_unitOfWork->isManaged($this->_user));
|
||||||
$this->assertSame($this->_user, $this->_unitOfWork->get($this->_user->getOid()));
|
$this->assertSame($this->_user, $this->_unitOfWork->getByOid($this->_user->getOid()));
|
||||||
}
|
}
|
||||||
|
|
||||||
public function testDetachSingleEntity()
|
public function testDetachSingleEntity()
|
||||||
{
|
{
|
||||||
$this->assertTrue($this->_unitOfWork->detach($this->_user));
|
$this->assertTrue($this->_unitOfWork->detach($this->_user));
|
||||||
try {
|
try {
|
||||||
$this->_unitOfWork->get($this->_user->getOid());
|
$this->_unitOfWork->getByOid($this->_user->getOid());
|
||||||
$this->fail("Entity is still managed after is has been detached.");
|
$this->fail("Entity is still managed after is has been detached.");
|
||||||
} catch (Doctrine_Connection_Exception $ex) {}
|
} catch (Doctrine_Connection_Exception $ex) {}
|
||||||
}
|
}
|
||||||
|
@ -34,7 +34,7 @@ class Orm_UnitOfWorkTestCase extends Doctrine_OrmTestCase
|
||||||
{
|
{
|
||||||
$this->assertEquals(1, $this->_unitOfWork->detachAll());
|
$this->assertEquals(1, $this->_unitOfWork->detachAll());
|
||||||
try {
|
try {
|
||||||
$this->_unitOfWork->get($this->_user->getOid());
|
$this->_unitOfWork->getByOid($this->_user->getOid());
|
||||||
$this->fail("Entity is still managed after all entities have been detached.");
|
$this->fail("Entity is still managed after all entities have been detached.");
|
||||||
} catch (Doctrine_Connection_Exception $ex) {}
|
} catch (Doctrine_Connection_Exception $ex) {}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue