You are here

public function RawFetcherResultTest::testGetRaw in Feeds 8.3

@covers ::getRaw

File

tests/src/Unit/Result/RawFetcherResultTest.php, line 17

Class

RawFetcherResultTest
@coversDefaultClass \Drupal\feeds\Result\RawFetcherResult @group feeds

Namespace

Drupal\Tests\feeds\Unit\Result

Code

public function testGetRaw() {
  $result = new RawFetcherResult('raw text', $this
    ->getMockFileSystem());
  $this
    ->assertSame($result
    ->getRaw(), 'raw text');
}