You are here

protected function ItemCacheTagsTest::createEntity in Drupal 9

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

Creates the entity to be tested.

Return value

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

Overrides EntityCacheTagsTestBase::createEntity

File

core/modules/aggregator/tests/src/Functional/ItemCacheTagsTest.php, line 45

Class

ItemCacheTagsTest
Tests the Item entity's cache tags.

Namespace

Drupal\Tests\aggregator\Functional

Code

protected function createEntity() {

  // Create a "Camelids" feed.
  $feed = Feed::create([
    'title' => 'Camelids',
    'url' => 'https://groups.drupal.org/not_used/167169',
    'refresh' => 900,
    'checked' => 1389919932,
    'description' => 'Drupal Core Group feed',
  ]);
  $feed
    ->save();

  // Create a "Llama" aggregator feed item.
  $item = Item::create([
    'fid' => $feed
      ->id(),
    'title' => t('Llama'),
    'path' => 'https://www.drupal.org/',
  ]);
  $item
    ->save();
  return $item;
}