You are here

public function ViewsTest::testView in Search API Multilingual Solr Search 8

File

tests/src/Functional/ViewsTest.php, line 63

Class

ViewsTest
Tests the Views integration of the Search API.

Namespace

Drupal\Tests\search_api_solr_multilingual\Functional

Code

public function testView() {

  // @see https://www.drupal.org/node/2773019
  $query = [
    'language' => [
      '***LANGUAGE_language_interface***',
    ],
  ];
  $this
    ->checkResults($query, [
    1,
    2,
    3,
    4,
    5,
  ], 'Search with interface language as filter');
  parent::testView();
}