Commit 6107a68f authored by Lukas Kahwe Smith's avatar Lukas Kahwe Smith

expanded tests when using savepoints

parent 5ae1a09c
...@@ -65,6 +65,10 @@ class ConnectionTest extends \Doctrine\Tests\DbalFunctionalTestCase ...@@ -65,6 +65,10 @@ class ConnectionTest extends \Doctrine\Tests\DbalFunctionalTestCase
try { try {
$this->_conn->beginTransaction(); $this->_conn->beginTransaction();
$this->assertEquals(2, $this->_conn->getTransactionNestingLevel()); $this->assertEquals(2, $this->_conn->getTransactionNestingLevel());
$this->_conn->beginTransaction();
$this->assertEquals(3, $this->_conn->getTransactionNestingLevel());
$this->_conn->commit();
$this->assertEquals(2, $this->_conn->getTransactionNestingLevel());
throw new \Exception; throw new \Exception;
$this->_conn->commit(); // never reached $this->_conn->commit(); // never reached
} catch (\Exception $e) { } catch (\Exception $e) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment