You are here

protected function EntityFormModeResourceTestBase::createEntity in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/FunctionalTests/Rest/EntityFormModeResourceTestBase.php \Drupal\FunctionalTests\Rest\EntityFormModeResourceTestBase::createEntity()

Creates the entity to be tested.

Return value

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

Overrides EntityResourceTestBase::createEntity

File

core/tests/Drupal/FunctionalTests/Rest/EntityFormModeResourceTestBase.php, line 37

Class

EntityFormModeResourceTestBase

Namespace

Drupal\FunctionalTests\Rest

Code

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