You are here

public function ConnectionTest::testPrefixTables in Drupal 8

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

Exercise the prefixTables() method.

@dataProvider providerTestPrefixTables

File

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

Class

ConnectionTest
Tests the Connection class.

Namespace

Drupal\Tests\Core\Database

Code

public function testPrefixTables($expected, $prefix_info, $query) {
  $mock_pdo = $this
    ->createMock('Drupal\\Tests\\Core\\Database\\Stub\\StubPDO');
  $connection = new StubConnection($mock_pdo, [
    'prefix' => $prefix_info,
  ]);
  $this
    ->assertEquals($expected, $connection
    ->prefixTables($query));
}