You are here

public function IndexResourceTest::noQueryDataProvider in JSON:API Search API 8

No query data provider.

Return value

\Generator The data.

File

tests/src/Functional/IndexResourceTest.php, line 151

Class

IndexResourceTest
Tests index resource..

Namespace

Drupal\Tests\jsonapi_search_api\Functional

Code

public function noQueryDataProvider() : \Generator {
  (yield [
    [],
    5,
    [
      1,
      2,
      3,
      4,
      5,
    ],
    [],
  ]);
}