function DatabaseTest::providerFindDriverAutoloadDirectory

Same name in other branches
  1. 9 core/tests/Drupal/Tests/Core/Database/DatabaseTest.php \Drupal\Tests\Core\Database\DatabaseTest::providerFindDriverAutoloadDirectory()
  2. 10 core/tests/Drupal/Tests/Core/Database/DatabaseTest.php \Drupal\Tests\Core\Database\DatabaseTest::providerFindDriverAutoloadDirectory()

Data provider for ::testFindDriverAutoloadDirectory().

Return value

array

File

core/tests/Drupal/Tests/Core/Database/DatabaseTest.php, line 71

Class

DatabaseTest
@coversDefaultClass \Drupal\Core\Database\Database

Namespace

Drupal\Tests\Core\Database

Code

public function providerFindDriverAutoloadDirectory() {
    return [
        'core mysql' => [
            FALSE,
            'Drupal\\Core\\Database\\Driver\\mysql',
        ],
        'D8 custom fake' => [
            FALSE,
            'Drupal\\Driver\\Database\\corefake',
        ],
        'module mysql' => [
            'core/modules/system/tests/modules/driver_test/src/Driver/Database/DrivertestMysql/',
            'Drupal\\driver_test\\Driver\\Database\\DrivertestMysql',
        ],
    ];
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.