You are here

protected function EntityViewModeTest::createEntity in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/jsonapi/tests/src/Functional/EntityViewModeTest.php \Drupal\Tests\jsonapi\Functional\EntityViewModeTest::createEntity()
  2. 10 core/modules/jsonapi/tests/src/Functional/EntityViewModeTest.php \Drupal\Tests\jsonapi\Functional\EntityViewModeTest::createEntity()

Creates the entity to be tested.

Return value

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

Overrides ResourceTestBase::createEntity

File

core/modules/jsonapi/tests/src/Functional/EntityViewModeTest.php, line 54

Class

EntityViewModeTest
JSON:API integration test for the "EntityViewMode" config entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function createEntity() {
  $entity_view_mode = EntityViewMode::create([
    'id' => 'user.test',
    'label' => 'Test',
    'targetEntityType' => 'user',
  ]);
  $entity_view_mode
    ->save();
  return $entity_view_mode;
}