You are here

protected function ViewsDisplayTest::setUp in Search API 8

Overrides KernelTestBase::setUp

File

tests/src/Kernel/Views/ViewsDisplayTest.php, line 38

Class

ViewsDisplayTest
Tests whether Views pages correctly create search display plugins.

Namespace

Drupal\Tests\search_api\Kernel\Views

Code

protected function setUp() {
  parent::setUp();
  $this
    ->installEntitySchema('entity_test_mulrev_changed');
  $this
    ->installEntitySchema('search_api_task');
  $this
    ->installConfig('search_api');

  // Do not use a batch for tracking the initial items after creating an
  // index when running the tests via the GUI. Otherwise, it seems Drupal's
  // Batch API gets confused and the test fails.
  if (!Utility::isRunningInCli()) {
    \Drupal::state()
      ->set('search_api_use_tracking_batch', FALSE);
  }
  $this
    ->installConfig([
    'search_api_test_example_content',
    'search_api_test_db',
  ]);
}