function DriverSpecificTransactionTestBase::testRollbackRoot
Same name in other branches
- 11.x core/tests/Drupal/KernelTests/Core/Database/DriverSpecificTransactionTestBase.php \Drupal\KernelTests\Core\Database\DriverSpecificTransactionTestBase::testRollbackRoot()
Tests root transaction rollback.
File
-
core/
tests/ Drupal/ KernelTests/ Core/ Database/ DriverSpecificTransactionTestBase.php, line 204
Class
- DriverSpecificTransactionTestBase
- Tests the transaction abstraction system.
Namespace
Drupal\KernelTests\Core\DatabaseCode
public function testRollbackRoot() : void {
$transaction = $this->createRootTransaction();
// Rollback. Since we are at the root, the transaction is closed.
// Corresponds to 'ROLLBACK' on the database.
$transaction->rollBack();
$this->assertRowAbsent('David');
$this->assertFalse($this->connection
->inTransaction());
$this->assertSame(0, $this->connection
->transactionManager()
->stackDepth());
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.