public function ViewProfilesPermsTest::setUp in View profiles permissions 8
Same name and namespace in other branches
- 2.0.x tests/src/Functional/ViewProfilesPermsTest.php \Drupal\Tests\view_profiles_perms\Functional\ViewProfilesPermsTest::setUp()
Overrides BrowserTestBase::setUp
File
- tests/
src/ Functional/ ViewProfilesPermsTest.php, line 55
Class
- ViewProfilesPermsTest
- Tests the permissions provided by view_profile_perms module.
Namespace
Drupal\Tests\view_profiles_perms\FunctionalCode
public function setUp() {
parent::setUp();
$developer = $this
->drupalCreateUser();
$developer
->addRole('developer');
$developer
->save();
$this->developer = $developer;
$manager = $this
->drupalCreateUser();
$manager
->addRole('manager');
$manager
->save();
$this->manager = $manager;
$this->admin = $this
->drupalCreateUser([], NULL, TRUE);
}