You are here

protected function AccessDeniedTest::setUp in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/src/Functional/System/AccessDeniedTest.php \Drupal\Tests\system\Functional\System\AccessDeniedTest::setUp()

Overrides BrowserTestBase::setUp

File

core/modules/system/tests/src/Functional/System/AccessDeniedTest.php, line 33

Class

AccessDeniedTest
Tests page access denied functionality, including custom 403 pages.

Namespace

Drupal\Tests\system\Functional\System

Code

protected function setUp() {
  parent::setUp();
  $this
    ->drupalPlaceBlock('page_title_block');

  // Create an administrative user.
  $this->adminUser = $this
    ->drupalCreateUser([
    'access administration pages',
    'administer site configuration',
    'link to any page',
    'administer blocks',
  ]);
  $this->adminUser->roles[] = 'administrator';
  $this->adminUser
    ->save();
  user_role_grant_permissions(RoleInterface::ANONYMOUS_ID, [
    'access user profiles',
  ]);
  user_role_grant_permissions(RoleInterface::AUTHENTICATED_ID, [
    'access user profiles',
  ]);
}