Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Plugin.Test/HeightStructuresPluginTest.cs =================================================================== diff -u -r65a75a24ebfe5942a69176ea6eaa858c29e6bdd5 -rbe64b9f33b3065a4d80c0a93c1cafe3d74f43513 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Plugin.Test/HeightStructuresPluginTest.cs (.../HeightStructuresPluginTest.cs) (revision 65a75a24ebfe5942a69176ea6eaa858c29e6bdd5) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Plugin.Test/HeightStructuresPluginTest.cs (.../HeightStructuresPluginTest.cs) (revision be64b9f33b3065a4d80c0a93c1cafe3d74f43513) @@ -144,5 +144,20 @@ Assert.IsTrue(importInfos.Any(i => i.DataType == typeof(HeightStructuresContext))); } } + [Test] + public void GetExportInfos_ReturnsSupportedExportInfos() + { + // Setup + using (var plugin = new HeightStructuresPlugin()) + { + // Call + ExportInfo[] exportInfos = plugin.GetExportInfos().ToArray(); + + // Assert + Assert.AreEqual(2, exportInfos.Length); + Assert.IsTrue(exportInfos.Any(tni => tni.DataType == typeof(HeightStructuresCalculationGroupContext))); + Assert.IsTrue(exportInfos.Any(tni => tni.DataType == typeof(HeightStructuresCalculationContext))); + } + } } } \ No newline at end of file