You are here

public function ConnectionTest::testIdentifierQuotesAssertString in Drupal 10

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Database/ConnectionTest.php \Drupal\Tests\Core\Database\ConnectionTest::testIdentifierQuotesAssertString()

@covers ::__construct

File

core/tests/Drupal/Tests/Core/Database/ConnectionTest.php, line 574

Class

ConnectionTest
Tests the Connection class.

Namespace

Drupal\Tests\Core\Database

Code

public function testIdentifierQuotesAssertString() {
  $this
    ->expectException(\AssertionError::class);
  $this
    ->expectExceptionMessage('\\Drupal\\Core\\Database\\Connection::$identifierQuotes must contain 2 string values');
  $mock_pdo = $this
    ->createMock(StubPDO::class);
  new StubConnection($mock_pdo, [], [
    0,
    '1',
  ]);
}