plugin = new MultipleValues([], 'multiple_values', []); parent::setUp(); } /** * Test input treated as multiple value output. */ public function testTreatAsMultiple() { $value = ['v1', 'v2', 'v3']; $output = $this->plugin->transform($value, $this->migrateExecutable, $this->row, 'destinationproperty'); $this->assertSame($output, $value); $this->assertTrue($this->plugin->multiple()); } }