You are here

public function SelectTest::testInvalidSelectCount in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/KernelTests/Core/Database/SelectTest.php \Drupal\KernelTests\Core\Database\SelectTest::testInvalidSelectCount()

Tests that an invalid count query throws an exception.

File

core/tests/Drupal/KernelTests/Core/Database/SelectTest.php, line 571

Class

SelectTest
Tests the Select query builder.

Namespace

Drupal\KernelTests\Core\Database

Code

public function testInvalidSelectCount() {
  $this
    ->expectException(DatabaseExceptionWrapper::class);

  // This query will fail because the table does not exist.
  $this->connection
    ->select('some_table_that_does_not_exist', 't')
    ->fields('t')
    ->countQuery()
    ->execute();
}