You are here

public function ConnectionTest::providerSchema in Drupal 10

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

Data provider for testSchema().

Return value

array Array of arrays with the following elements:

  • Expected namespaced class of schema object.
  • Driver for PDO connection.
  • Namespace for connection.

File

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

Class

ConnectionTest
Tests the Connection class.

Namespace

Drupal\Tests\Core\Database

Code

public function providerSchema() {
  return [
    [
      'Drupal\\Tests\\Core\\Database\\Stub\\Driver\\Schema',
      'stub',
      'Drupal\\Tests\\Core\\Database\\Stub\\Driver',
    ],
  ];
}