You are here

public function MultilingualContentAccessTest::setUp in Search API Solr 8.2

Performs setup tasks before each individual test method is run.

Installs commonly used schemas and sets up a search server and an index, with the specified processor enabled.

Parameters

string|null $processor: (optional) The plugin ID of the processor that should be set up for testing.

Overrides ContentAccessTest::setUp

File

tests/src/Kernel/Processor/MultilingualContentAccessTest.php, line 27

Class

MultilingualContentAccessTest
Tests the "Content access" processor.

Namespace

Drupal\Tests\search_api_solr\Kernel\Processor

Code

public function setUp($processor = NULL) {
  parent::setUp();
  $this
    ->enableSolrServer('search_api_solr_multilingual_test', '/config/install/search_api.server.solr_multilingual_search_server.yml');
}