Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Plugin.Test/HeightStructuresPluginTest.cs =================================================================== diff -u -r3500ad219742fca6d4a9057e8c92435dde8d8fc1 -r423010168fe01b2373e9be55f047659911e670f5 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Plugin.Test/HeightStructuresPluginTest.cs (.../HeightStructuresPluginTest.cs) (revision 3500ad219742fca6d4a9057e8c92435dde8d8fc1) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Plugin.Test/HeightStructuresPluginTest.cs (.../HeightStructuresPluginTest.cs) (revision 423010168fe01b2373e9be55f047659911e670f5) @@ -159,5 +159,20 @@ } mocks.VerifyAll(); } + + [Test] + public void GetImportInfos_ReturnsExpectedImportInfos() + { + // Setup + using (var plugin = new HeightStructuresPlugin()) + { + // Call + ImportInfo[] importInfos = plugin.GetImportInfos().ToArray(); + + // Assert + Assert.AreEqual(1, importInfos.Length); + Assert.IsTrue(importInfos.Any(i => i.DataType == typeof(HeightStructureContext))); + } + } } } \ No newline at end of file