. */ /** * Doctrine_Transaction_Sqlite_TestCase * * @package Doctrine * @author Konsta Vesterinen * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @category Object Relational Mapping * @link www.phpdoctrine.com * @since 1.0 * @version $Revision$ */ class Doctrine_Transaction_Sqlite_TestCase extends Doctrine_UnitTestCase { public function testSetIsolationThrowsExceptionOnUnknownIsolationMode() { try { $this->transaction->setIsolation('unknown'); $this->fail(); } catch(Doctrine_Transaction_Exception $e) { $this->pass(); } } public function testSetIsolationExecutesSql() { $this->transaction->setIsolation('READ UNCOMMITTED'); $this->transaction->setIsolation('READ COMMITTED'); $this->transaction->setIsolation('REPEATABLE READ'); $this->transaction->setIsolation('SERIALIZABLE'); $this->assertEqual($this->adapter->pop(), 'PRAGMA read_uncommitted = 1'); $this->assertEqual($this->adapter->pop(), 'PRAGMA read_uncommitted = 1'); $this->assertEqual($this->adapter->pop(), 'PRAGMA read_uncommitted = 1'); $this->assertEqual($this->adapter->pop(), 'PRAGMA read_uncommitted = 0'); } }