20 lines
551 B
PHP
20 lines
551 B
PHP
|
<?php
|
||
|
require_once 'lib/DoctrineTestInit.php';
|
||
|
|
||
|
#namespace Doctrine::Tests::ORM;
|
||
|
|
||
|
/**
|
||
|
* EntityManager tests.
|
||
|
*/
|
||
|
class Orm_EntityManagerTest extends Doctrine_OrmTestCase
|
||
|
{
|
||
|
public function testSettingInvalidFlushModeThrowsException()
|
||
|
{
|
||
|
$prev = $this->_em->getFlushMode();
|
||
|
try {
|
||
|
$this->_em->setFlushMode('foobar');
|
||
|
$this->fail("Setting invalid flushmode did not trigger exception.");
|
||
|
} catch (Doctrine_EntityManager_Exception $expected) {}
|
||
|
$this->_em->setFlushMode($prev);
|
||
|
}
|
||
|
}
|