You are here

protected function SolrBackendTestBase::installConfigs in Search API Solr 4.x

Same name and namespace in other branches
  1. 8.3 tests/src/Kernel/SolrBackendTestBase.php \Drupal\Tests\search_api_solr\Kernel\SolrBackendTestBase::installConfigs()
  2. 8.2 tests/src/Kernel/SolrBackendTestBase.php \Drupal\Tests\search_api_solr\Kernel\SolrBackendTestBase::installConfigs()

Called by setUp() to install required configs.

3 calls to SolrBackendTestBase::installConfigs()
SearchApiSolrTest::installConfigs in tests/src/Kernel/SearchApiSolrTest.php
Called by setUp() to install required configs.
SolrBackendTestBase::setUp in tests/src/Kernel/SolrBackendTestBase.php
SolrLegacyExtractionTest::installConfigs in modules/search_api_solr_legacy/tests/src/Kernel/SolrLegacyExtractionTest.php
Called by setUp() to install required configs.
2 methods override SolrBackendTestBase::installConfigs()
SearchApiSolrTest::installConfigs in tests/src/Kernel/SearchApiSolrTest.php
Called by setUp() to install required configs.
SolrLegacyExtractionTest::installConfigs in modules/search_api_solr_legacy/tests/src/Kernel/SolrLegacyExtractionTest.php
Called by setUp() to install required configs.

File

tests/src/Kernel/SolrBackendTestBase.php, line 76

Class

SolrBackendTestBase
Tests location searches and distance facets using the Solr search backend.

Namespace

Drupal\Tests\search_api_solr\Kernel

Code

protected function installConfigs() {
  $this
    ->installConfig([
    'search_api_solr',
    'search_api_solr_test',
  ]);
}