public function SkipOnValueTest::testRowBypassesOnMultipleNonValue in Migrate Plus 8.5
Same name and namespace in other branches
- 8.4 tests/src/Unit/process/SkipOnValueTest.php \Drupal\Tests\migrate_plus\Unit\process\SkipOnValueTest::testRowBypassesOnMultipleNonValue()
@covers ::row
File
- tests/
src/ Unit/ process/ SkipOnValueTest.php, line 86
Class
- SkipOnValueTest
- Tests the skip on value process plugin.
Namespace
Drupal\Tests\migrate_plus\Unit\processCode
public function testRowBypassesOnMultipleNonValue() : void {
$configuration['method'] = 'row';
$configuration['value'] = [
1,
1,
2,
3,
5,
8,
];
$configuration['not_equals'] = TRUE;
$value = (new SkipOnValue($configuration, 'skip_on_value', []))
->transform(5, $this->migrateExecutable, $this->row, 'destinationproperty');
$this
->assertEquals($value, '5');
$value = (new SkipOnValue($configuration, 'skip_on_value', []))
->transform(1, $this->migrateExecutable, $this->row, 'destinationproperty');
$this
->assertEquals($value, '1');
}