You are here

protected function SearchApiBulkFormTest::setUp in Search API 8

Overrides BrowserTestBase::setUp

File

tests/src/Functional/SearchApiBulkFormTest.php, line 41

Class

SearchApiBulkFormTest
Tests the Search API bulk form Views field plugin.

Namespace

Drupal\Tests\search_api\Functional

Code

protected function setUp() {
  parent::setUp();
  $this->index = Index::load('test_index');
  $this
    ->createIndexedContent();
  $this
    ->drupalLogin($this
    ->createUser([
    'view test entity',
  ]));
}