function TransactionTest::assertRowAbsent

Same name in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Database/TransactionTest.php \Drupal\KernelTests\Core\Database\TransactionTest::assertRowAbsent()
  2. 8.9.x core/tests/Drupal/KernelTests/Core/Database/TransactionTest.php \Drupal\KernelTests\Core\Database\TransactionTest::assertRowAbsent()

Asserts that a given row is absent from the test table.

@internal

Parameters

string $name: The name of the row.

string $message: The message to log for the assertion.

12 calls to TransactionTest::assertRowAbsent()
TransactionTest::testCommitAfterRollbackSameSavepoint in core/tests/Drupal/KernelTests/Core/Database/TransactionTest.php
Tests savepoint transaction commit after rollback.
TransactionTest::testRollbackRoot in core/tests/Drupal/KernelTests/Core/Database/TransactionTest.php
Tests root transaction rollback.
TransactionTest::testRollbackRootAfterSavepointRollback in core/tests/Drupal/KernelTests/Core/Database/TransactionTest.php
Tests root transaction rollback after savepoint rollback.
TransactionTest::testRollbackSavepoint in core/tests/Drupal/KernelTests/Core/Database/TransactionTest.php
Tests savepoint transaction rollback.
TransactionTest::testRollbackTwiceSameSavepoint in core/tests/Drupal/KernelTests/Core/Database/TransactionTest.php
Tests savepoint transaction duplicated rollback.

... See full list

File

core/tests/Drupal/KernelTests/Core/Database/TransactionTest.php, line 759

Class

TransactionTest
Tests the transactions, using the explicit ::commitOrRelease method.

Namespace

Drupal\KernelTests\Core\Database

Code

public function assertRowAbsent(string $name, ?string $message = NULL) : void {
    $present = (bool) $this->connection
        ->query('SELECT 1 FROM {test} WHERE [name] = :name', [
        ':name' => $name,
    ])
        ->fetchField();
    $this->assertFalse($present, $message ?? "Row '{$name}' should be absent, but it actually exists.");
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.