You are here

protected function ItemCacheTagsTest::createEntity in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/aggregator/src/Tests/ItemCacheTagsTest.php \Drupal\aggregator\Tests\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/src/Tests/ItemCacheTagsTest.php, line 44
Contains \Drupal\aggregator\Tests\ItemCacheTagsTest.

Class

ItemCacheTagsTest
Tests the Item entity's cache tags.

Namespace

Drupal\aggregator\Tests

Code

protected function createEntity() {

  // Create a "Camelids" feed.
  $feed = Feed::create(array(
    '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(array(
    'fid' => $feed
      ->id(),
    'title' => t('Llama'),
    'path' => 'https://www.drupal.org/',
  ));
  $item
    ->save();
  return $item;
}