function AccessTestBase::setUp
Overrides UserTestBase::setUp
1 call to AccessTestBase::setUp()
- AccessRoleTest::setUp in core/
modules/ user/ tests/ src/ Functional/ Views/ AccessRoleTest.php  - Sets up the test.
 
1 method overrides AccessTestBase::setUp()
- AccessRoleTest::setUp in core/
modules/ user/ tests/ src/ Functional/ Views/ AccessRoleTest.php  - Sets up the test.
 
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\ViewsCode
protected function setUp($import_test_views = TRUE, $modules = []) : void {
  parent::setUp($import_test_views, $modules);
  $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)
    ->save();
  // @todo when all the plugin information is cached make a reset function and
  // call it here.
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.