protected function EntityFormModeResourceTestBase::createEntity in Drupal 8
Same name and namespace in other branches
- 9 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
Namespace
Drupal\FunctionalTests\RestCode
protected function createEntity() {
$entity_form_mode = EntityFormMode::create([
'id' => 'user.test',
'label' => 'Test',
'targetEntityType' => 'user',
]);
$entity_form_mode
->save();
return $entity_form_mode;
}