You are here

public function ConnectionTest::testGetDriverClass in Zircon Profile 8

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

Test getDriverClass().

@dataProvider providerGetDriverClass

File

core/tests/Drupal/Tests/Core/Database/ConnectionTest.php, line 182
Contains \Drupal\Tests\Core\Database\ConnectionTest.

Class

ConnectionTest
Tests the Connection class.

Namespace

Drupal\Tests\Core\Database

Code

public function testGetDriverClass($expected, $driver, $namespace, $class) {
  $mock_pdo = $this
    ->getMock('Drupal\\Tests\\Core\\Database\\Stub\\StubPDO');
  $connection = new StubConnection($mock_pdo, array(
    'namespace' => $namespace,
  ));

  // Set the driver using our stub class' public property.
  $connection->driver = $driver;
  $this
    ->assertEquals($expected, $connection
    ->getDriverClass($class));
}