You are here

protected function EntityFormDisplayResourceTestBase::createEntity in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/FunctionalTests/Rest/EntityFormDisplayResourceTestBase.php \Drupal\FunctionalTests\Rest\EntityFormDisplayResourceTestBase::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/EntityFormDisplayResourceTestBase.php, line 36

Class

EntityFormDisplayResourceTestBase

Namespace

Drupal\FunctionalTests\Rest

Code

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;
}