protected function TestMigrateExecutable::getIdMap in Drupal 9
Same name in this branch
- 9 core/modules/migrate/tests/src/Kernel/TestMigrateExecutable.php \Drupal\Tests\migrate\Kernel\TestMigrateExecutable::getIdMap()
- 9 core/modules/migrate/tests/src/Kernel/Plugin/LogTest.php \Drupal\Tests\migrate\Kernel\Plugin\TestMigrateExecutable::getIdMap()
Same name and namespace in other branches
- 8 core/modules/migrate/tests/src/Kernel/TestMigrateExecutable.php \Drupal\Tests\migrate\Kernel\TestMigrateExecutable::getIdMap()
Get the ID map from the current migration.
Return value
\Drupal\migrate\Plugin\MigrateIdMapInterface The ID map.
Overrides MigrateExecutable::getIdMap
File
- core/
modules/ migrate/ tests/ src/ Kernel/ TestMigrateExecutable.php, line 15
Class
- TestMigrateExecutable
- Tests MigrateExecutable.
Namespace
Drupal\Tests\migrate\KernelCode
protected function getIdMap() {
// This adds test coverage that this works.
return new TestFilterIterator(parent::getIdMap());
}