You are here

protected function ShortcutSetTest::createEntity in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/jsonapi/tests/src/Functional/ShortcutSetTest.php \Drupal\Tests\jsonapi\Functional\ShortcutSetTest::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/ShortcutSetTest.php, line 78

Class

ShortcutSetTest
JSON:API integration test for the "ShortcutSet" config entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function createEntity() {
  $set = ShortcutSet::create([
    'id' => 'llama_set',
    'label' => 'Llama Set',
  ]);
  $set
    ->save();
  return $set;
}