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