public function ConnectionTest::testSchema in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/Database/ConnectionTest.php \Drupal\Tests\Core\Database\ConnectionTest::testSchema()
- 10 core/tests/Drupal/Tests/Core/Database/ConnectionTest.php \Drupal\Tests\Core\Database\ConnectionTest::testSchema()
Test Connection::schema().
@dataProvider providerSchema
File
- core/
tests/ Drupal/ Tests/ Core/ Database/ ConnectionTest.php, line 206
Class
- ConnectionTest
- Tests the Connection class.
Namespace
Drupal\Tests\Core\DatabaseCode
public function testSchema($expected, $driver, $namespace) {
$mock_pdo = $this
->createMock('Drupal\\Tests\\Core\\Database\\Stub\\StubPDO');
$connection = new StubConnection($mock_pdo, [
'namespace' => $namespace,
]);
$connection->driver = $driver;
$this
->assertInstanceOf($expected, $connection
->schema());
}