function MigrateSqlIdMapTest::lookupDestinationIdMappingDataProvider
Data provider for testLookupDestinationIdMapping().
Scenarios to test (for both hits and misses) are:
- Single-value source ID to single-value destination ID.
 - Multi-value source ID to multi-value destination ID.
 - Single-value source ID to multi-value destination ID.
 - Multi-value source ID to single-value destination ID.
 
Return value
array An array of data values.
File
- 
              core/
modules/ migrate/ tests/ src/ Unit/ MigrateSqlIdMapTest.php, line 390  
Class
- MigrateSqlIdMapTest
 - Tests the SQL ID map plugin.
 
Namespace
Drupal\Tests\migrate\UnitCode
public static function lookupDestinationIdMappingDataProvider() {
  return [
    [
      1,
      1,
    ],
    [
      2,
      2,
    ],
    [
      1,
      2,
    ],
    [
      2,
      1,
    ],
  ];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.