function UserResourceTestBase::createAnotherEntity

Same name and namespace in other branches
  1. 9 core/modules/user/tests/src/Functional/Rest/UserResourceTestBase.php \Drupal\Tests\user\Functional\Rest\UserResourceTestBase::createAnotherEntity()
  2. 8.9.x core/modules/user/tests/src/Functional/Rest/UserResourceTestBase.php \Drupal\Tests\user\Functional\Rest\UserResourceTestBase::createAnotherEntity()
  3. 11.x core/modules/user/tests/src/Functional/Rest/UserResourceTestBase.php \Drupal\Tests\user\Functional\Rest\UserResourceTestBase::createAnotherEntity()

Creates another entity to be tested.

Return value

\Drupal\Core\Entity\EntityInterface Another entity based on $this->entity.

Overrides EntityResourceTestBase::createAnotherEntity

File

core/modules/user/tests/src/Functional/Rest/UserResourceTestBase.php, line 102

Class

UserResourceTestBase

Namespace

Drupal\Tests\user\Functional\Rest

Code

protected function createAnotherEntity() {
    
    /** @var \Drupal\user\UserInterface $user */
    $user = $this->entity
        ->createDuplicate();
    $user->setUsername($user->label() . '_dupe');
    $user->save();
    return $user;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.