You are here

public function DatabaseExceptionWrapperTest::testQueryThrowsDatabaseExceptionWrapperException in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/Drupal/KernelTests/Core/Database/DatabaseExceptionWrapperTest.php \Drupal\KernelTests\Core\Database\DatabaseExceptionWrapperTest::testQueryThrowsDatabaseExceptionWrapperException()
  2. 9 core/tests/Drupal/KernelTests/Core/Database/DatabaseExceptionWrapperTest.php \Drupal\KernelTests\Core\Database\DatabaseExceptionWrapperTest::testQueryThrowsDatabaseExceptionWrapperException()

Tests the expected database exception thrown for inexistent tables.

File

core/tests/Drupal/KernelTests/Core/Database/DatabaseExceptionWrapperTest.php, line 61

Class

DatabaseExceptionWrapperTest
Tests exceptions thrown by queries.

Namespace

Drupal\KernelTests\Core\Database

Code

public function testQueryThrowsDatabaseExceptionWrapperException() {
  $this
    ->expectException(DatabaseExceptionWrapper::class);
  Database::getConnection()
    ->query('SELECT * FROM {does_not_exist}');
}