function ItemCacheTagsTest::createEntity

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

Overrides EntityCacheTagsTestBase::createEntity

File

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

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' => '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.