function FeedTest::createEntity

Same name in other branches
  1. 9 core/modules/aggregator/tests/src/Functional/Jsonapi/FeedTest.php \Drupal\Tests\aggregator\Functional\Jsonapi\FeedTest::createEntity()

Overrides ResourceTestBase::createEntity

File

core/modules/jsonapi/tests/src/Functional/FeedTest.php, line 75

Class

FeedTest
JSON:API integration test for the "Feed" content entity type.

Namespace

Drupal\Tests\jsonapi\Functional

Code

public function createEntity() {
    $feed = Feed::create();
    $feed->set('fid', 1)
        ->setTitle('Feed')
        ->setUrl('http://example.com/rss.xml')
        ->setDescription('Feed Resource Test 1')
        ->setRefreshRate(900)
        ->setLastCheckedTime(123456789)
        ->setQueuedTime(123456789)
        ->setWebsiteUrl('http://example.com')
        ->setImage('http://example.com/feed_logo')
        ->setHash('abcdefg')
        ->setEtag('hijklmn')
        ->setLastModified(123456789)
        ->save();
    return $feed;
}

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