You are here

protected function SearchApiSolrTest::checkBackendSpecificFeatures in Search API Solr 8.3

Same name and namespace in other branches
  1. 8 tests/src/Kernel/SearchApiSolrTest.php \Drupal\Tests\search_api_solr\Kernel\SearchApiSolrTest::checkBackendSpecificFeatures()
  2. 4.x tests/src/Kernel/SearchApiSolrTest.php \Drupal\Tests\search_api_solr\Kernel\SearchApiSolrTest::checkBackendSpecificFeatures()

Checks backend specific features.

Overrides BackendTestBase::checkBackendSpecificFeatures

File

tests/src/Kernel/SearchApiSolrTest.php, line 224

Class

SearchApiSolrTest
Tests index and search capabilities using the Solr search backend.

Namespace

Drupal\Tests\search_api_solr\Kernel

Code

protected function checkBackendSpecificFeatures() {
  $this
    ->checkBasicAuth();
  $this
    ->checkQueryParsers();
  $this
    ->checkQueryConditions();
  $this
    ->checkHighlight();
  $this
    ->checkSearchResultGrouping();
  $this
    ->clearIndex();
  $this
    ->checkDatasourceAdditionAndDeletion();
  $this
    ->clearIndex();
  $this
    ->checkRetrieveData();
  $this
    ->clearIndex();
  $this
    ->checkSearchResultSorts();
}