You are here

protected function EntityFormModeTest::createEntity in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/jsonapi/tests/src/Functional/EntityFormModeTest.php \Drupal\Tests\jsonapi\Functional\EntityFormModeTest::createEntity()
  2. 10 core/modules/jsonapi/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

core/modules/jsonapi/tests/src/Functional/EntityFormModeTest.php, line 54

Class

EntityFormModeTest
JSON:API integration test for the "EntityFormMode" config entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function createEntity() {
  $entity_form_mode = EntityFormMode::create([
    'id' => 'user.test',
    'label' => 'Test',
    'targetEntityType' => 'user',
  ]);
  $entity_form_mode
    ->save();
  return $entity_form_mode;
}