You are here

protected function AccessTestBase::setUp in Drupal 9

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

Overrides UserTestBase::setUp

File

core/modules/user/tests/src/Functional/Views/AccessTestBase.php, line 48

Class

AccessTestBase
A common test base class for the user access plugin tests.

Namespace

Drupal\Tests\user\Functional\Views

Code

protected function setUp($import_test_views = TRUE) {
  parent::setUp($import_test_views);
  $this
    ->drupalPlaceBlock('system_breadcrumb_block');
  $this
    ->enableViewsTestModule();
  $this->webUser = $this
    ->drupalCreateUser();
  $roles = $this->webUser
    ->getRoles();
  $this->webRole = $roles[0];
  $this->normalRole = $this
    ->drupalCreateRole([]);
  $this->normalUser = $this
    ->drupalCreateUser([
    'views_test_data test permission',
  ]);
  $this->normalUser
    ->addRole($this->normalRole);
  $this->normalUser
    ->save();

  // @todo when all the plugin information is cached make a reset function and
  // call it here.
}