protected function EntityFormModeTest::createEntity in JSON:API 8
Same name and namespace in other branches
- 8.2 tests/src/Functional/EntityFormModeTest.php \Drupal\Tests\jsonapi\Functional\EntityFormModeTest::createEntity()
Creates the entity to be tested.
Return value
\Drupal\Core\Entity\EntityInterface The entity to be tested.
Overrides ResourceTestBase::createEntity
File
- tests/
src/ Functional/ EntityFormModeTest.php, line 49
Class
- EntityFormModeTest
- JSON API integration test for the "EntityFormMode" config entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function createEntity() {
$entity_form_mode = EntityFormMode::create([
'id' => 'user.test',
'label' => 'Test',
'targetEntityType' => 'user',
]);
$entity_form_mode
->save();
return $entity_form_mode;
}