You are here

public function DatabaseExceptionWrapperTest::testQueryThrowsDatabaseExceptionWrapperException in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Database/DatabaseExceptionWrapperTest.php \Drupal\KernelTests\Core\Database\DatabaseExceptionWrapperTest::testQueryThrowsDatabaseExceptionWrapperException()
  2. 10 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 40

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}');
}