You are here

protected function ItemResourceTestBase::createEntity in Drupal 8

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

Creates the entity to be tested.

Return value

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

Overrides EntityResourceTestBase::createEntity

File

core/modules/aggregator/tests/src/Functional/Rest/ItemResourceTestBase.php, line 59

Class

ItemResourceTestBase
ResourceTestBase for Item entity.

Namespace

Drupal\Tests\aggregator\Functional\Rest

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" item.
  $item = Item::create();
  $item
    ->setTitle('Llama')
    ->setFeedId($feed
    ->id())
    ->setLink('https://www.drupal.org/')
    ->setPostedTime(123456789)
    ->save();
  return $item;
}