You are here

public function QueryTest::testProcessingLevelDataProvider in Search API 8

Provides test data for the testProcessingLevel() method.

Return value

array[] Arrays of method arguments for the \Drupal\Tests\search_api\Kernel\QueryTest::testProcessingLevel() method.

File

tests/src/Kernel/System/QueryTest.php, line 142

Class

QueryTest
Tests query functionality.

Namespace

Drupal\Tests\search_api\Kernel\System

Code

public function testProcessingLevelDataProvider() {
  return [
    'none' => [
      QueryInterface::PROCESSING_NONE,
      FALSE,
    ],
    'basic' => [
      QueryInterface::PROCESSING_BASIC,
    ],
    'full' => [
      QueryInterface::PROCESSING_FULL,
    ],
  ];
}