protected function SearchNodeUpdateAndDeletionTest::setUp in Drupal 9
Same name and namespace in other branches
- 8 core/modules/search/tests/src/Functional/SearchNodeUpdateAndDeletionTest.php \Drupal\Tests\search\Functional\SearchNodeUpdateAndDeletionTest::setUp()
Overrides BrowserTestBase::setUp
File
- core/
modules/ search/ tests/ src/ Functional/ SearchNodeUpdateAndDeletionTest.php, line 33
Class
- SearchNodeUpdateAndDeletionTest
- Tests search index is updated properly when nodes are removed or updated.
Namespace
Drupal\Tests\search\FunctionalCode
protected function setUp() : void {
parent::setUp();
$this
->drupalCreateContentType([
'type' => 'page',
'name' => 'Basic page',
]);
// Create a test user and log in.
$this->testUser = $this
->drupalCreateUser([
'access content',
'search content',
]);
$this
->drupalLogin($this->testUser);
}