You are here

public function SqlsrvConnectionTest::providerEscapeTables in Drupal driver for SQL Server and SQL Azure 8.2

Same name and namespace in other branches
  1. 4.2.x tests/src/Unit/SqlsrvConnectionTest.php \Drupal\Tests\sqlsrv\Unit\SqlsrvConnectionTest::providerEscapeTables()
  2. 3.0.x tests/src/Unit/SqlsrvConnectionTest.php \Drupal\Tests\sqlsrv\Unit\SqlsrvConnectionTest::providerEscapeTables()
  3. 3.1.x tests/src/Unit/SqlsrvConnectionTest.php \Drupal\Tests\sqlsrv\Unit\SqlsrvConnectionTest::providerEscapeTables()
  4. 4.0.x tests/src/Unit/SqlsrvConnectionTest.php \Drupal\Tests\sqlsrv\Unit\SqlsrvConnectionTest::providerEscapeTables()
  5. 4.1.x tests/src/Unit/SqlsrvConnectionTest.php \Drupal\Tests\sqlsrv\Unit\SqlsrvConnectionTest::providerEscapeTables()

Data provider for testEscapeTable.

Return value

array An indexed array of where each value is an array of arguments to pass to testEscapeField. The first value is the expected value, and the second value is the value to test.

File

tests/src/Unit/SqlsrvConnectionTest.php, line 76

Class

SqlsrvConnectionTest
Test the behavior of the Connection class.

Namespace

Drupal\Tests\sqlsrv\Unit

Code

public function providerEscapeTables() {
  return [
    [
      'nocase',
      'nocase',
    ],
  ];
}