function FlattenTest::testFlatten
Tests that various array flatten operations work properly.
Attributes
#[DataProvider('providerTestFlatten')]
File
- 
              core/modules/ migrate/ tests/ src/ Unit/ process/ FlattenTest.php, line 29 
Class
- FlattenTest
- Tests the flatten plugin.
Namespace
Drupal\Tests\migrate\Unit\processCode
public function testFlatten($value, $expected) : void {
  $flattened = $this->plugin
    ->transform($value, $this->migrateExecutable, $this->row, 'destination_property');
  $this->assertSame($expected, $flattened);
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
