function AccessTestBase::setUp
Same name in other branches
- 9 core/modules/user/tests/src/Functional/Views/AccessTestBase.php \Drupal\Tests\user\Functional\Views\AccessTestBase::setUp()
- 10 core/modules/user/tests/src/Functional/Views/AccessTestBase.php \Drupal\Tests\user\Functional\Views\AccessTestBase::setUp()
- 11.x 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\ViewsCode
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.
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.