You are here

protected function EntityFormDisplayTest::createEntity in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/jsonapi/tests/src/Functional/EntityFormDisplayTest.php \Drupal\Tests\jsonapi\Functional\EntityFormDisplayTest::createEntity()
  2. 9 core/modules/jsonapi/tests/src/Functional/EntityFormDisplayTest.php \Drupal\Tests\jsonapi\Functional\EntityFormDisplayTest::createEntity()

File

core/modules/jsonapi/tests/src/Functional/EntityFormDisplayTest.php, line 53

Class

EntityFormDisplayTest
JSON:API integration test for the "EntityFormDisplay" config entity type.

Namespace

Drupal\Tests\jsonapi\Functional

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