function UserResourceTestBase::createEntity

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

Creates the entity to be tested.

Return value

\Drupal\Core\Entity\EntityInterface The entity to be tested.

Overrides EntityResourceTestBase::createEntity

File

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

Class

UserResourceTestBase
Resource test base for the user entity.

Namespace

Drupal\Tests\user\Functional\Rest

Code

protected function createEntity() {
  // Create a "Llama" user.
  $user = User::create([
    'created' => 123456789,
  ]);
  $user->setUsername('Llama')
    ->setChangedTime(123456789)
    ->activate()
    ->save();
  return $user;
}

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