You are here

protected function ShortcutTest::createEntity in JSON:API 8.2

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

Class

ShortcutTest
JSON:API integration test for the "Shortcut" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

protected function createEntity() {
  $shortcut = Shortcut::create([
    'shortcut_set' => 'default',
    'title' => t('Comments'),
    'weight' => -20,
    'link' => [
      'uri' => 'internal:/user/logout',
    ],
  ]);
  $shortcut
    ->save();
  return $shortcut;
}