
| Current Path : /var/www/html/ift/web/core/modules/migrate/tests/src/Unit/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/ift/web/core/modules/migrate/tests/src/Unit/MigrateNullIdMapTest.php |
<?php
namespace Drupal\Tests\migrate\Unit;
use Drupal\migrate\Plugin\migrate\id_map\NullIdMap;
/**
* Tests the NULL ID map plugin.
*
* @group migrate
*/
class MigrateNullIdMapTest extends MigrateTestCase {
/**
* Tests the NULL ID map get message iterator method.
*
* @group legacy
*
* @expectedDeprecation getMessageIterator() is deprecated in drupal:8.8.0 and is removed from drupal:9.0.0. Use getMessages() instead. See https://www.drupal.org/node/3060969
*/
public function testGetMessageIterator() {
$id_map = new NullIdMap([], 'null', NULL);
$id_map->getMessageIterator();
}
}