function MigrateExecutableTest::testProcessRowEmptyPipeline

Same name and namespace in other branches
  1. 9 core/modules/migrate/tests/src/Unit/MigrateExecutableTest.php \Drupal\Tests\migrate\Unit\MigrateExecutableTest::testProcessRowEmptyPipeline()
  2. 8.9.x core/modules/migrate/tests/src/Unit/MigrateExecutableTest.php \Drupal\Tests\migrate\Unit\MigrateExecutableTest::testProcessRowEmptyPipeline()
  3. 11.x core/modules/migrate/tests/src/Unit/MigrateExecutableTest.php \Drupal\Tests\migrate\Unit\MigrateExecutableTest::testProcessRowEmptyPipeline()

Tests the processRow method with an empty pipeline.

File

core/modules/migrate/tests/src/Unit/MigrateExecutableTest.php, line 318

Class

MigrateExecutableTest
@coversDefaultClass \Drupal\migrate\MigrateExecutable[[api-linebreak]] @group migrate

Namespace

Drupal\Tests\migrate\Unit

Code

public function testProcessRowEmptyPipeline() : void {
  $this->migration
    ->expects($this->once())
    ->method('getProcessPlugins')
    ->with(NULL)
    ->willReturn([
    'test' => [],
  ]);
  $row = new Row();
  $this->executable
    ->processRow($row);
  $this->assertSame($row->getDestination(), []);
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.