function 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;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.