/**
* Tests that an error is logged if the plugin manager throws an exception.
*/ publicfunctiontestExceptionOnPluginNotFound(){ $this->migrationPluginManager->createInstances(['test_migration'])->willReturn([]); $this->expectException(PluginNotFoundException::class); $this->expectExceptionMessage("Plugin ID 'test_migration' was not found.");