You are here

public function MigrateLookupTest::testExceptionOnMultipleMigrationsNotFound in Drupal 9

Same name and namespace in other branches
  1. 10 core/modules/migrate/tests/src/Unit/MigrateLookupTest.php \Drupal\Tests\migrate\Unit\MigrateLookupTest::testExceptionOnMultipleMigrationsNotFound()

Tests message logged when multiple migrations are not found.

@dataProvider providerExceptionOnMultipleMigrationsNotFound

File

core/modules/migrate/tests/src/Unit/MigrateLookupTest.php, line 85

Class

MigrateLookupTest
Provides unit testing for the migration lookup service.

Namespace

Drupal\Tests\migrate\Unit

Code

public function testExceptionOnMultipleMigrationsNotFound($migrations, $message) {
  $migration_plugin_manager = $this
    ->prophesize(MigrationPluginManagerInterface::class);
  $migration_plugin_manager
    ->createInstances($migrations)
    ->willReturn([]);
  $this
    ->expectException(PluginException::class);
  $this
    ->expectExceptionMessage($message);
  $lookup = new MigrateLookup($migration_plugin_manager
    ->reveal());
  $lookup
    ->lookup($migrations, [
    1,
  ]);
}