You are here

protected function ContentLanguageSettingsResourceTestBase::getExpectedNormalizedEntity in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/language/tests/src/Functional/Rest/ContentLanguageSettingsResourceTestBase.php \Drupal\Tests\language\Functional\Rest\ContentLanguageSettingsResourceTestBase::getExpectedNormalizedEntity()

Returns the expected normalization of the entity.

Return value

array

Overrides EntityResourceTestBase::getExpectedNormalizedEntity

See also

::createEntity()

File

core/modules/language/tests/src/Functional/Rest/ContentLanguageSettingsResourceTestBase.php, line 57

Class

ContentLanguageSettingsResourceTestBase

Namespace

Drupal\Tests\language\Functional\Rest

Code

protected function getExpectedNormalizedEntity() {
  return [
    'default_langcode' => 'site_default',
    'dependencies' => [
      'config' => [
        'node.type.camelids',
      ],
    ],
    'id' => 'node.camelids',
    'langcode' => 'en',
    'language_alterable' => FALSE,
    'status' => TRUE,
    'target_bundle' => 'camelids',
    'target_entity_type_id' => 'node',
    'uuid' => $this->entity
      ->uuid(),
  ];
}