function ArrayBuildTest::testStringInput

Same name and namespace in other branches
  1. 9 core/modules/migrate/tests/src/Unit/process/ArrayBuildTest.php \Drupal\Tests\migrate\Unit\process\ArrayBuildTest::testStringInput()
  2. 8.9.x core/modules/migrate/tests/src/Unit/process/ArrayBuildTest.php \Drupal\Tests\migrate\Unit\process\ArrayBuildTest::testStringInput()
  3. 10 core/modules/migrate/tests/src/Unit/process/ArrayBuildTest.php \Drupal\Tests\migrate\Unit\process\ArrayBuildTest::testStringInput()

Tests string input.

File

core/modules/migrate/tests/src/Unit/process/ArrayBuildTest.php, line 81

Class

ArrayBuildTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21migrate%21src%21Plugin%21migrate%21process%21ArrayBuild.php/class/ArrayBuild/11.x" title="Builds an array based on the key and value configuration." class="local">\Drupal\migrate\Plugin\migrate\process\ArrayBuild</a> @group migrate

Namespace

Drupal\Tests\migrate\Unit\process

Code

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.