function ConnectionTest::providerPrefixRoundTrip

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/Database/ConnectionTest.php \Drupal\Tests\Core\Database\ConnectionTest::providerPrefixRoundTrip()
  2. 8.9.x core/tests/Drupal/Tests/Core/Database/ConnectionTest.php \Drupal\Tests\Core\Database\ConnectionTest::providerPrefixRoundTrip()
  3. 11.x core/tests/Drupal/Tests/Core/Database/ConnectionTest.php \Drupal\Tests\Core\Database\ConnectionTest::providerPrefixRoundTrip()

Data provider for testPrefixRoundTrip().

Return value

array Array of arrays with the following elements:

  • Arguments to pass to Connection::setPrefix().
  • Expected result from Connection::tablePrefix().

File

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

Class

ConnectionTest
Tests the Connection class.

Namespace

Drupal\Tests\Core\Database

Code

public static function providerPrefixRoundTrip() {
  return [
    [
      [
        '' => 'test_',
      ],
      'test_',
    ],
    [
      [
        'fooTable' => 'foo_',
        'barTable' => 'foo_',
      ],
      'foo_',
    ],
  ];
}

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