You are here

protected function MigrateMediaTestBase::getIgnoredEntities in Media Migration 8

Returns IDs or labels of those entities that shouldn't be checked.

Return value

string[][] An array of expected entity labels keyed by IDs, grouped by entity type ID. For some of the entities, label can be NULL.

File

tests/src/Functional/MigrateMediaTestBase.php, line 86

Class

MigrateMediaTestBase
Provides a base class for testing media migration via the UI.

Namespace

Drupal\Tests\media_migration\Functional

Code

protected function getIgnoredEntities() {
  return [
    'file' => [
      'audio.png',
      'generic.png',
      'video.png',
    ],
  ];
}