You are here

public function SkipOnEmptyTest::testProcessSkipsOnEmpty in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/migrate/tests/src/Unit/process/SkipOnEmptyTest.php \Drupal\Tests\migrate\Unit\process\SkipOnEmptyTest::testProcessSkipsOnEmpty()

@covers ::process

File

core/modules/migrate/tests/src/Unit/process/SkipOnEmptyTest.php, line 20

Class

SkipOnEmptyTest
Tests the skip on empty process plugin.

Namespace

Drupal\Tests\migrate\Unit\process

Code

public function testProcessSkipsOnEmpty() {
  $configuration['method'] = 'process';
  $this
    ->expectException(MigrateSkipProcessException::class);
  (new SkipOnEmpty($configuration, 'skip_on_empty', []))
    ->transform('', $this->migrateExecutable, $this->row, 'destination_property');
}