protected function EntityFormDisplayTest::createEntity in JSON:API 8
Same name and namespace in other branches
- 8.2 tests/src/Functional/EntityFormDisplayTest.php \Drupal\Tests\jsonapi\Functional\EntityFormDisplayTest::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/ EntityFormDisplayTest.php, line 48
Class
- EntityFormDisplayTest
- JSON API integration test for the "EntityFormDisplay" config entity type.
Namespace
Drupal\Tests\jsonapi\FunctionalCode
protected function createEntity() {
// Create a "Camelids" node type.
$camelids = NodeType::create([
'name' => 'Camelids',
'type' => 'camelids',
]);
$camelids
->save();
// Create a form display.
$form_display = EntityFormDisplay::create([
'targetEntityType' => 'node',
'bundle' => 'camelids',
'mode' => 'default',
]);
$form_display
->save();
return $form_display;
}