function RoleResourceTestBase::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/ RoleResourceTestBase.php, line 35
Class
Namespace
Drupal\Tests\user\Functional\RestCode
protected function createEntity() {
$role = Role::create([
'id' => 'llama',
'label' => 'Llama',
]);
$role->save();
return $role;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.