You are here

protected function ShortcutCacheTagsTest::createEntity in Drupal 8

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

Creates the entity to be tested.

Return value

\Drupal\Core\Entity\EntityInterface The entity to be tested.

Overrides EntityCacheTagsTestBase::createEntity

1 call to ShortcutCacheTagsTest::createEntity()
ShortcutCacheTagsTest::testEntityCreation in core/modules/shortcut/tests/src/Functional/ShortcutCacheTagsTest.php
Tests that when creating a shortcut, the shortcut set tag is invalidated.

File

core/modules/shortcut/tests/src/Functional/ShortcutCacheTagsTest.php, line 48

Class

ShortcutCacheTagsTest
Tests the Shortcut entity's cache tags.

Namespace

Drupal\Tests\shortcut\Functional

Code

protected function createEntity() {

  // Create a "Llama" shortcut.
  $shortcut = Shortcut::create([
    'shortcut_set' => 'default',
    'title' => t('Llama'),
    'weight' => 0,
    'link' => [
      [
        'uri' => 'internal:/admin',
      ],
    ],
  ]);
  $shortcut
    ->save();
  return $shortcut;
}