Index: Ringtoets/Common/test/Ringtoets.Common.Forms.TestUtil/MapFeaturesTestHelper.cs =================================================================== diff -u -r09e2881b5639ab468288f91bebc0c0406ac9c05d -r1f4fbcc980a70c87598d3c9be642e3e8934173ca --- Ringtoets/Common/test/Ringtoets.Common.Forms.TestUtil/MapFeaturesTestHelper.cs (.../MapFeaturesTestHelper.cs) (revision 09e2881b5639ab468288f91bebc0c0406ac9c05d) +++ Ringtoets/Common/test/Ringtoets.Common.Forms.TestUtil/MapFeaturesTestHelper.cs (.../MapFeaturesTestHelper.cs) (revision 1f4fbcc980a70c87598d3c9be642e3e8934173ca) @@ -58,5 +58,25 @@ Assert.AreEqual(expectedValue, feature.MetaData[key]); } + + /// + /// Asserts whether the meta data for in + /// contains the correct output data. + /// + /// The value to assert against. + /// The to be asserted. + /// The name of the meta data element to retrieve the data from. + /// Thrown when the meta data of does not + /// contain a with as key. + /// Thrown when the wave height or the design water level of a + /// hydraulic boundary location and the respective meta data value associated with + /// are not the same. + /// + public static void AssertHydraulicBoundaryLocationOutputMetaData(RoundedDouble expectedValue, + MapFeature feature, + string key) + { + Assert.AreEqual(expectedValue, feature.MetaData[key]); + } } } \ No newline at end of file