SingleValueTest.php in Migrate Plus 8.5
File
tests/src/Unit/process/SingleValueTest.php
View source
<?php
namespace Drupal\Tests\migrate_plus\Unit\process;
use Drupal\migrate_plus\Plugin\migrate\process\SingleValue;
use Drupal\Tests\migrate\Unit\process\MigrateProcessTestCase;
class SingleValueTest extends MigrateProcessTestCase {
protected function setUp() : void {
$this->plugin = new SingleValue([], 'single_value', []);
parent::setUp();
}
public function testTreatAsSingle() : void {
$value = [
'v1',
'v2',
'v3',
];
$output = $this->plugin
->transform($value, $this->migrateExecutable, $this->row, 'destinationproperty');
$this
->assertSame($output, $value);
$this
->assertFalse($this->plugin
->multiple());
}
}