Index: Ringtoets/Common/test/Ringtoets.Common.Forms.TestUtil/MapDataTestHelper.cs =================================================================== diff -u -ra39449e68d406de61e504a49a179d6362f5fa50d -r64426c8cf80aaac466ddd1112888f4d6a4b7e4ef --- Ringtoets/Common/test/Ringtoets.Common.Forms.TestUtil/MapDataTestHelper.cs (.../MapDataTestHelper.cs) (revision a39449e68d406de61e504a49a179d6362f5fa50d) +++ Ringtoets/Common/test/Ringtoets.Common.Forms.TestUtil/MapDataTestHelper.cs (.../MapDataTestHelper.cs) (revision 64426c8cf80aaac466ddd1112888f4d6a4b7e4ef) @@ -155,6 +155,28 @@ } /// + /// Asserts whether the contains the data that is representative for the data of + /// hydraulic boundary locations and calculations in . + /// + /// The assessment section that contain the original data. + /// The that needs to be asserted. + /// Thrown when: + /// + /// is not ; + /// the number of hydraulic boundary locations and features in are not the same; + /// the wave height or the design water level calculation results of a hydraulic boundary location and the + /// respective outputs of a corresponding feature are not the same. + /// + /// + public static void AssertHydraulicBoundaryLocationOutputsMapData(IAssessmentSection assessmentSection, MapData mapData) + { + Assert.IsInstanceOf(mapData); + var hydraulicLocationsMapData = (MapPointData) mapData; + + MapFeaturesTestHelper.AssertHydraulicBoundaryFeaturesData(assessmentSection, hydraulicLocationsMapData.Features); + } + + /// /// Asserts whether the contains the data that is representative for the . /// /// The reference line that contains the original data.