protected function UpdatePathTestBase::replaceUser1 in Drupal 9
Same name and namespace in other branches
- 8 core/tests/Drupal/FunctionalTests/Update/UpdatePathTestBase.php \Drupal\FunctionalTests\Update\UpdatePathTestBase::replaceUser1()
 
Replace User 1 with the user created here.
1 call to UpdatePathTestBase::replaceUser1()
- UpdatePathTestBase::setUp in core/
tests/ Drupal/ FunctionalTests/ Update/ UpdatePathTestBase.php  - Overrides BrowserTestBase::setUp() for update testing.
 
1 method overrides UpdatePathTestBase::replaceUser1()
- UpdatePathTestBaseFilledTest::replaceUser1 in core/
modules/ system/ tests/ src/ Functional/ UpdateSystem/ UpdatePathTestBaseFilledTest.php  - Replace User 1 with the user created here.
 
File
- core/
tests/ Drupal/ FunctionalTests/ Update/ UpdatePathTestBase.php, line 302  
Class
- UpdatePathTestBase
 - Provides a base class for writing an update test.
 
Namespace
Drupal\FunctionalTests\UpdateCode
protected function replaceUser1() {
  /** @var \Drupal\user\UserInterface $account */
  // @todo Saving the account before the update is problematic.
  //   https://www.drupal.org/node/2560237
  $account = User::load(1);
  $account
    ->setPassword($this->rootUser->pass_raw);
  $account
    ->setEmail($this->rootUser
    ->getEmail());
  $account
    ->setUsername($this->rootUser
    ->getAccountName());
  $account
    ->save();
}