You are here

public function BackendTest::regression2949962DataProvider in Search API 8

Provides test data for testRegression2949962().

Return value

array An associative array of argument arrays for testRegression2949962().

File

modules/search_api_db/tests/src/Kernel/BackendTest.php, line 1196

Class

BackendTest
Tests index and search capabilities using the Database search backend.

Namespace

Drupal\Tests\search_api_db\Kernel

Code

public function regression2949962DataProvider() {
  return [
    'Match mode "partial"' => [
      'partial',
    ],
    'Match mode "prefix"' => [
      'prefix',
    ],
    'Match mode "words"' => [
      'words',
    ],
  ];
}