You are here

protected function SearchNodePunctuationTest::setUp in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/search/tests/src/Functional/SearchNodePunctuationTest.php \Drupal\Tests\search\Functional\SearchNodePunctuationTest::setUp()

Overrides BrowserTestBase::setUp

File

core/modules/search/tests/src/Functional/SearchNodePunctuationTest.php, line 31

Class

SearchNodePunctuationTest
Tests search functionality with punctuation and HTML entities.

Namespace

Drupal\Tests\search\Functional

Code

protected function setUp() : void {
  parent::setUp();
  $this
    ->drupalCreateContentType([
    'type' => 'page',
    'name' => 'Basic page',
  ]);
  node_access_rebuild();

  // Create a test user and log in.
  $this->testUser = $this
    ->drupalCreateUser([
    'access content',
    'search content',
    'use advanced search',
    'access user profiles',
  ]);
  $this
    ->drupalLogin($this->testUser);
}