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

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