function UserResourceTestBase::getExpectedNormalizedEntity
Same name in other branches
- 9 core/modules/user/tests/src/Functional/Rest/UserResourceTestBase.php \Drupal\Tests\user\Functional\Rest\UserResourceTestBase::getExpectedNormalizedEntity()
- 10 core/modules/user/tests/src/Functional/Rest/UserResourceTestBase.php \Drupal\Tests\user\Functional\Rest\UserResourceTestBase::getExpectedNormalizedEntity()
- 11.x core/modules/user/tests/src/Functional/Rest/UserResourceTestBase.php \Drupal\Tests\user\Functional\Rest\UserResourceTestBase::getExpectedNormalizedEntity()
Overrides EntityResourceTestBase::getExpectedNormalizedEntity
1 call to UserResourceTestBase::getExpectedNormalizedEntity()
- UserHalJsonAnonTest::getExpectedNormalizedEntity in core/
modules/ user/ tests/ src/ Functional/ Hal/ UserHalJsonAnonTest.php - Returns the expected normalization of the entity.
1 method overrides UserResourceTestBase::getExpectedNormalizedEntity()
- UserHalJsonAnonTest::getExpectedNormalizedEntity in core/
modules/ user/ tests/ src/ Functional/ Hal/ UserHalJsonAnonTest.php - Returns the expected normalization of the entity.
File
-
core/
modules/ user/ tests/ src/ Functional/ Rest/ UserResourceTestBase.php, line 97
Class
Namespace
Drupal\Tests\user\Functional\RestCode
protected function getExpectedNormalizedEntity() {
return [
'uid' => [
[
'value' => 3,
],
],
'uuid' => [
[
'value' => $this->entity
->uuid(),
],
],
'langcode' => [
[
'value' => 'en',
],
],
'name' => [
[
'value' => 'Llama',
],
],
'created' => [
$this->formatExpectedTimestampItemValues(123456789),
],
'changed' => [
$this->formatExpectedTimestampItemValues($this->entity
->getChangedTime()),
],
'default_langcode' => [
[
'value' => TRUE,
],
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.