You are here

public function SolrBackendTestBase::setUp 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::setUp()
  2. 8.2 tests/src/Kernel/SolrBackendTestBase.php \Drupal\Tests\search_api_solr\Kernel\SolrBackendTestBase::setUp()

File

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

Class

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

Namespace

Drupal\Tests\search_api_solr\Kernel

Code

public function setUp() : void {
  if ('true' === SOLR_CLOUD) {
    $this->serverId .= '_cloud';
    $this->indexId .= '_cloud';
  }
  parent::setUp();
  $this
    ->installConfigs();
  $this
    ->commonSolrBackendSetUp();
  $this->logger = new InMemoryLogger();
  \Drupal::service('logger.factory')
    ->addLogger($this->logger);
}