You are here

public function TamperableFeedItemAdapterTest::testGetSource in Feeds Tamper 8.2

@covers ::getSource

File

tests/src/Unit/Adapter/TamperableFeedItemAdapterTest.php, line 40

Class

TamperableFeedItemAdapterTest
@coversDefaultClass \Drupal\feeds_tamper\Adapter\TamperableFeedItemAdapter @group feeds_tamper

Namespace

Drupal\Tests\feeds_tamper\Unit\Adapter

Code

public function testGetSource() {
  $this->feedItem
    ->expects($this
    ->once())
    ->method('toArray');
  $this->adapter
    ->getSource();
}