protected function SearchPageTextTest::setUp in Drupal 8
Same name and namespace in other branches
- 9 core/modules/search/tests/src/Functional/SearchPageTextTest.php \Drupal\Tests\search\Functional\SearchPageTextTest::setUp()
Overrides BrowserTestBase::setUp
File
- core/
modules/ search/ tests/ src/ Functional/ SearchPageTextTest.php, line 36
Class
- SearchPageTextTest
- Tests the search help text and search page text.
Namespace
Drupal\Tests\search\FunctionalCode
protected function setUp() {
parent::setUp();
$this
->drupalCreateContentType([
'type' => 'page',
'name' => 'Basic page',
]);
// Create user.
$this->searchingUser = $this
->drupalCreateUser([
'search content',
'access user profiles',
'use advanced search',
]);
$this
->drupalPlaceBlock('local_tasks_block');
$this
->drupalPlaceBlock('page_title_block');
}