You are here

protected function UserTranslationUITest::setUp in Drupal 8

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

Overrides ContentTranslationTestBase::setUp

File

core/modules/user/tests/src/Functional/UserTranslationUITest.php, line 38

Class

UserTranslationUITest
Tests the User Translation UI.

Namespace

Drupal\Tests\user\Functional

Code

protected function setUp() {
  $this->entityTypeId = 'user';
  $this->testLanguageSelector = FALSE;
  $this->name = $this
    ->randomMachineName();
  parent::setUp();
  \Drupal::entityTypeManager()
    ->getStorage('user')
    ->resetCache();
}