You are here

protected function EntityTestDateonlyTest::getExpectedNormalizedEntity in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/datetime/tests/src/Functional/EntityResource/EntityTest/EntityTestDateonlyTest.php \Drupal\Tests\datetime\Functional\EntityResource\EntityTest\EntityTestDateonlyTest::getExpectedNormalizedEntity()

Returns the expected normalization of the entity.

Return value

array

Overrides EntityTestResourceTestBase::getExpectedNormalizedEntity

See also

::createEntity()

File

core/modules/datetime/tests/src/Functional/EntityResource/EntityTest/EntityTestDateonlyTest.php, line 94

Class

EntityTestDateonlyTest
Tests the datetime field constraint with 'date' items.

Namespace

Drupal\Tests\datetime\Functional\EntityResource\EntityTest

Code

protected function getExpectedNormalizedEntity() {
  return parent::getExpectedNormalizedEntity() + [
    static::$fieldName => [
      [
        'value' => $this->entity
          ->get(static::$fieldName)->value,
      ],
    ],
  ];
}