You are here

protected function BlockHiddenRegionTest::setUp in Drupal 9

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

Overrides BrowserTestBase::setUp

File

core/modules/block/tests/src/Functional/BlockHiddenRegionTest.php, line 32

Class

BlockHiddenRegionTest
Tests that a newly installed theme does not inherit blocks to its hidden regions.

Namespace

Drupal\Tests\block\Functional

Code

protected function setUp() : void {
  parent::setUp();

  // Create administrative user.
  $this->adminUser = $this
    ->drupalCreateUser([
    'administer blocks',
    'administer themes',
    'search content',
  ]);
  $this
    ->drupalLogin($this->adminUser);
  $this
    ->drupalPlaceBlock('search_form_block');
  $this
    ->drupalPlaceBlock('local_tasks_block');
}