You are here

public function FeedTest::testGetCreatedTime in Feeds 8.3

@covers ::getCreatedTime

File

tests/src/Kernel/Entity/FeedTest.php, line 83

Class

FeedTest
@coversDefaultClass \Drupal\feeds\Entity\Feed @group feeds

Namespace

Drupal\Tests\feeds\Kernel\Entity

Code

public function testGetCreatedTime() {
  $feed = $this
    ->createFeed($this->feedType
    ->id());
  $this
    ->assertTrue(is_int($feed
    ->getCreatedTime()));
}