public function JsonPathParserTest::testEmptyFeed in Feeds extensible parsers 8
Tests empty feed handling.
File
- tests/src/ Unit/ Feeds/ Parser/ JsonPathParserTest.php, line 193 
Class
- JsonPathParserTest
- @coversDefaultClass \Drupal\feeds_ex\Feeds\Parser\JsonPathParser @group feeds_ex
Namespace
Drupal\Tests\feeds_ex\Unit\Feeds\ParserCode
public function testEmptyFeed() {
  $this->parser
    ->parse($this->feed, new RawFetcherResult(' ', $this->fileSystem), $this->state);
  $this
    ->assertEmptyFeedMessage($this->parser
    ->getMessenger()
    ->getMessages());
}