You are here

protected function ItemTest::createEntity in Drupal 8

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

Creates the entity to be tested.

Return value

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

Overrides ResourceTestBase::createEntity

File

core/modules/jsonapi/tests/src/Functional/ItemTest.php, line 70

Class

ItemTest
JSON:API integration test for the "Item" content entity type.

Namespace

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