Index: Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/RingtoetsPluginTest.cs =================================================================== diff -u -r43701b21ae485678c471bcf76ca9c374fd16b9f9 -r6ea2281c03c04dfbfaa7742d533fc1f88b96f59c --- Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/RingtoetsPluginTest.cs (.../RingtoetsPluginTest.cs) (revision 43701b21ae485678c471bcf76ca9c374fd16b9f9) +++ Ringtoets/Integration/test/Ringtoets.Integration.Plugin.Test/RingtoetsPluginTest.cs (.../RingtoetsPluginTest.cs) (revision 6ea2281c03c04dfbfaa7742d533fc1f88b96f59c) @@ -521,6 +521,21 @@ } [Test] + public void GetImportInfos_ReturnsSupportedUpdateInfos() + { + // Setup + using (var plugin = new RingtoetsPlugin()) + { + // Call + UpdateInfo[] updateInfos = plugin.GetUpdateInfos().ToArray(); + + // Assert + Assert.AreEqual(1, updateInfos.Length); + Assert.IsTrue(updateInfos.Any(i => i.DataType == typeof(ForeshoreProfilesContext))); + } + } + + [Test] public void Activate_WithoutGui_ThrowsInvalidOperationException() { // Setup