public function ConnectionTest::providerPrefixRoundTrip in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Core/Database/ConnectionTest.php \Drupal\Tests\Core\Database\ConnectionTest::providerPrefixRoundTrip()
Dataprovider 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 28 
- Contains \Drupal\Tests\Core\Database\ConnectionTest.
Class
- ConnectionTest
- Tests the Connection class.
Namespace
Drupal\Tests\Core\DatabaseCode
public function providerPrefixRoundTrip() {
  return array(
    array(
      array(
        '' => 'test_',
      ),
      'test_',
    ),
    array(
      array(
        'fooTable' => 'foo_',
        'barTable' => 'bar_',
      ),
      array(
        'fooTable' => 'foo_',
        'barTable' => 'bar_',
      ),
    ),
  );
}