You are here

protected function ContentTranslationTestBase::setupUsers in Drupal 8

Same name in this branch
  1. 8 core/modules/content_translation/src/Tests/ContentTranslationTestBase.php \Drupal\content_translation\Tests\ContentTranslationTestBase::setupUsers()
  2. 8 core/modules/content_translation/tests/src/Functional/ContentTranslationTestBase.php \Drupal\Tests\content_translation\Functional\ContentTranslationTestBase::setupUsers()

Creates and activates translator, editor and admin users.

1 call to ContentTranslationTestBase::setupUsers()
ContentTranslationTestBase::setUp in core/modules/content_translation/src/Tests/ContentTranslationTestBase.php
Sets up a Drupal site for running functional and integration tests.

File

core/modules/content_translation/src/Tests/ContentTranslationTestBase.php, line 154

Class

ContentTranslationTestBase
Base class for content translation tests.

Namespace

Drupal\content_translation\Tests

Code

protected function setupUsers() {
  $this->translator = $this
    ->drupalCreateUser($this
    ->getTranslatorPermissions(), 'translator');
  $this->editor = $this
    ->drupalCreateUser($this
    ->getEditorPermissions(), 'editor');
  $this->administrator = $this
    ->drupalCreateUser($this
    ->getAdministratorPermissions(), 'administrator');
  $this
    ->drupalLogin($this->translator);
}