You are here

protected function PageNotFoundTest::setUp in Drupal 10

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

Overrides BrowserTestBase::setUp

File

core/modules/system/tests/src/Functional/System/PageNotFoundTest.php, line 32

Class

PageNotFoundTest
Tests page not found functionality, including custom 404 pages.

Namespace

Drupal\Tests\system\Functional\System

Code

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

  // Create an administrative user.
  $this->adminUser = $this
    ->drupalCreateUser([
    'administer site configuration',
    'link to any page',
  ]);
  $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',
  ]);
}