function ArrayBuildTest::testStringInput
Tests string input.
File
-
core/
modules/ migrate/ tests/ src/ Unit/ process/ ArrayBuildTest.php, line 81
Class
- ArrayBuildTest
- @coversDefaultClass \Drupal\migrate\Plugin\migrate\process\ArrayBuild[[api-linebreak]] @group migrate
Namespace
Drupal\Tests\migrate\Unit\processCode
public function testStringInput() : void {
$source = 'foo';
$this->expectException(MigrateException::class);
$this->expectExceptionMessage('The input should be an array of arrays');
$this->plugin
->transform($source, $this->migrateExecutable, $this->row, 'destination_property');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.