public function FeedImportHandlerTest::testStartBatchImport in Feeds 8.3
@covers ::startBatchImport
File
- tests/
src/ Unit/ FeedImportHandlerTest.php, line 77
Class
- FeedImportHandlerTest
- @coversDefaultClass \Drupal\feeds\FeedImportHandler @group feeds
Namespace
Drupal\Tests\feeds\UnitCode
public function testStartBatchImport() {
$this->handler
->expects($this
->once())
->method('getExecutable')
->willReturn($this
->createMock(FeedsExecutableInterface::class));
$this->handler
->startBatchImport($this->feed);
}