Index: Core/Common/src/Core.Common.Base/Geometry/Point2D.cs =================================================================== diff -u -r57634f535a347ce49c2491f114d7238d5387c7a8 -r0e541f9ed4d56646332e86aea1b3c699c650563b --- Core/Common/src/Core.Common.Base/Geometry/Point2D.cs (.../Point2D.cs) (revision 57634f535a347ce49c2491f114d7238d5387c7a8) +++ Core/Common/src/Core.Common.Base/Geometry/Point2D.cs (.../Point2D.cs) (revision 0e541f9ed4d56646332e86aea1b3c699c650563b) @@ -20,9 +20,7 @@ // All rights reserved. using System; - using Core.Common.Base.Properties; - using MathNet.Numerics.LinearAlgebra; using MathNet.Numerics.LinearAlgebra.Double; @@ -123,15 +121,15 @@ { return false; } - return Equals((Point2D)obj); + return Equals((Point2D) obj); } public override int GetHashCode() { unchecked { var hashCode = X.GetHashCode(); - hashCode = (hashCode * 397) ^ Y.GetHashCode(); + hashCode = (hashCode*397) ^ Y.GetHashCode(); return hashCode; } } @@ -145,7 +143,7 @@ /// Compares the with based on and . /// /// A to compare with. - /// True if the coordinates of the matches the coordinate of . False otherwise. + /// True if the coordinates of the matches the coordinate of . False otherwise. private bool Equals(Point2D other) { return X.Equals(other.X) && Y.Equals(other.Y); Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/Properties/Resources.Designer.cs =================================================================== diff -u -r1d88fa250061d277c8d5c999d998c6885ab917b3 -r0e541f9ed4d56646332e86aea1b3c699c650563b --- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 1d88fa250061d277c8d5c999d998c6885ab917b3) +++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 0e541f9ed4d56646332e86aea1b3c699c650563b) @@ -676,5 +676,23 @@ return ResourceManager.GetString("Orientation_DisplayName", resourceCulture); } } + + /// + /// Looks up a localized string similar to De coördinaten van de locatie in het Rijksdriehoeksstelsel.. + /// + public static string WorldReferencePoint_Description { + get { + return ResourceManager.GetString("WorldReferencePoint_Description", resourceCulture); + } + } + + /// + /// Looks up a localized string similar to Locatie (RD) [m]. + /// + public static string WorldReferencePoint_DisplayName { + get { + return ResourceManager.GetString("WorldReferencePoint_DisplayName", resourceCulture); + } + } } } Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/Properties/Resources.resx =================================================================== diff -u -r1d88fa250061d277c8d5c999d998c6885ab917b3 -r0e541f9ed4d56646332e86aea1b3c699c650563b --- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/Properties/Resources.resx (.../Resources.resx) (revision 1d88fa250061d277c8d5c999d998c6885ab917b3) +++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/Properties/Resources.resx (.../Resources.resx) (revision 0e541f9ed4d56646332e86aea1b3c699c650563b) @@ -322,4 +322,10 @@ HBN [m+NAP] + + De coördinaten van de locatie in het Rijksdriehoeksstelsel. + + + Locatie (RD) [m] + \ No newline at end of file Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/PropertyClasses/DikeProfileProperties.cs =================================================================== diff -u -r7461afe37bcf85d746168f3fde0ca01947ec888e -r0e541f9ed4d56646332e86aea1b3c699c650563b --- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/PropertyClasses/DikeProfileProperties.cs (.../DikeProfileProperties.cs) (revision 7461afe37bcf85d746168f3fde0ca01947ec888e) +++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/PropertyClasses/DikeProfileProperties.cs (.../DikeProfileProperties.cs) (revision 0e541f9ed4d56646332e86aea1b3c699c650563b) @@ -21,11 +21,13 @@ using System.ComponentModel; using Core.Common.Base.Data; +using Core.Common.Base.Geometry; using Core.Common.Gui.Attributes; using Core.Common.Gui.PropertyBag; using Core.Common.Utils.Attributes; using Ringtoets.GrassCoverErosionInwards.Data; -using Ringtoets.GrassCoverErosionInwards.Forms.Properties; +using RingtoetsCommonDataResources = Ringtoets.Common.Data.Properties.Resources; +using GrassCoverErosionInwardsFormsResources = Ringtoets.GrassCoverErosionInwards.Forms.Properties.Resources; namespace Ringtoets.GrassCoverErosionInwards.Forms.PropertyClasses { @@ -40,11 +42,12 @@ private const int foreshorePropertyIndex = 4; private const int dikeGeometryPropertyIndex = 5; private const int dikeHeightPropertyIndex = 6; + private const int worldReferencePointPropertyIndex = 7; [PropertyOrder(namePropertyIndex)] - [ResourcesCategory(typeof(Common.Data.Properties.Resources), "Categories_General")] - [ResourcesDisplayName(typeof(Resources), "DikeProfile_Name_DisplayName")] - [ResourcesDescription(typeof(Resources), "DikeProfile_Name_Description")] + [ResourcesCategory(typeof(RingtoetsCommonDataResources), "Categories_General")] + [ResourcesDisplayName(typeof(GrassCoverErosionInwardsFormsResources), "DikeProfile_Name_DisplayName")] + [ResourcesDescription(typeof(GrassCoverErosionInwardsFormsResources), "DikeProfile_Name_Description")] public string Name { get @@ -54,9 +57,9 @@ } [PropertyOrder(orientationPropertyIndex)] - [ResourcesCategory(typeof(Resources), "Categories_Schematisation")] - [ResourcesDisplayName(typeof(Resources), "Orientation_DisplayName")] - [ResourcesDescription(typeof(Resources), "Orientation_Description")] + [ResourcesCategory(typeof(GrassCoverErosionInwardsFormsResources), "Categories_Schematisation")] + [ResourcesDisplayName(typeof(GrassCoverErosionInwardsFormsResources), "Orientation_DisplayName")] + [ResourcesDescription(typeof(GrassCoverErosionInwardsFormsResources), "Orientation_Description")] public RoundedDouble Orientation { get @@ -67,9 +70,9 @@ [PropertyOrder(breakWaterPropertyIndex)] [TypeConverter(typeof(ExpandableObjectConverter))] - [ResourcesCategory(typeof(Resources), "Categories_Schematisation")] - [ResourcesDisplayName(typeof(Resources), "BreakWaterProperties_DisplayName")] - [ResourcesDescription(typeof(Resources), "BreakWaterProperties_Description")] + [ResourcesCategory(typeof(GrassCoverErosionInwardsFormsResources), "Categories_Schematisation")] + [ResourcesDisplayName(typeof(GrassCoverErosionInwardsFormsResources), "BreakWaterProperties_DisplayName")] + [ResourcesDescription(typeof(GrassCoverErosionInwardsFormsResources), "BreakWaterProperties_Description")] public DikeProfileBreakWaterProperties BreakWater { get @@ -83,9 +86,9 @@ [PropertyOrder(foreshorePropertyIndex)] [TypeConverter(typeof(ExpandableObjectConverter))] - [ResourcesCategory(typeof(Resources), "Categories_Schematisation")] - [ResourcesDisplayName(typeof(Resources), "ForeshoreProperties_DisplayName")] - [ResourcesDescription(typeof(Resources), "ForeshoreProperties_Description")] + [ResourcesCategory(typeof(GrassCoverErosionInwardsFormsResources), "Categories_Schematisation")] + [ResourcesDisplayName(typeof(GrassCoverErosionInwardsFormsResources), "ForeshoreProperties_DisplayName")] + [ResourcesDescription(typeof(GrassCoverErosionInwardsFormsResources), "ForeshoreProperties_Description")] public DikeProfileForeshoreProperties Foreshore { get @@ -99,9 +102,9 @@ [PropertyOrder(dikeGeometryPropertyIndex)] [TypeConverter(typeof(ExpandableObjectConverter))] - [ResourcesCategory(typeof(Resources), "Categories_Schematisation")] - [ResourcesDisplayName(typeof(Resources), "DikeGeometryProperties_DisplayName")] - [ResourcesDescription(typeof(Resources), "DikeGeometryProperties_Description")] + [ResourcesCategory(typeof(GrassCoverErosionInwardsFormsResources), "Categories_Schematisation")] + [ResourcesDisplayName(typeof(GrassCoverErosionInwardsFormsResources), "DikeGeometryProperties_DisplayName")] + [ResourcesDescription(typeof(GrassCoverErosionInwardsFormsResources), "DikeGeometryProperties_Description")] public DikeProfileDikeGeometryProperties DikeGeometry { get @@ -114,15 +117,29 @@ } [PropertyOrder(dikeHeightPropertyIndex)] - [ResourcesCategory(typeof(Resources), "Categories_Schematisation")] - [ResourcesDisplayName(typeof(Resources), "DikeHeight_DisplayName")] - [ResourcesDescription(typeof(Resources), "DikeHeight_Description")] + [ResourcesCategory(typeof(GrassCoverErosionInwardsFormsResources), "Categories_Schematisation")] + [ResourcesDisplayName(typeof(GrassCoverErosionInwardsFormsResources), "DikeHeight_DisplayName")] + [ResourcesDescription(typeof(GrassCoverErosionInwardsFormsResources), "DikeHeight_Description")] public RoundedDouble DikeHeight { get { return data.DikeHeight; } } + + [PropertyOrder(worldReferencePointPropertyIndex)] + [ResourcesCategory(typeof(GrassCoverErosionInwardsFormsResources), "Categories_Schematisation")] + [ResourcesDisplayName(typeof(GrassCoverErosionInwardsFormsResources), "WorldReferencePoint_DisplayName")] + [ResourcesDescription(typeof(GrassCoverErosionInwardsFormsResources), "WorldReferencePoint_Description")] + public Point2D WorldReferencePoint + { + get + { + return new Point2D( + new RoundedDouble(0, data.WorldReferencePoint.X), + new RoundedDouble(0, data.WorldReferencePoint.Y)); + } + } } } \ No newline at end of file Index: Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/PropertyClasses/GrassCoverErosionInwardsInputContextProperties.cs =================================================================== diff -u -r439c018be79bddfd3bae1081d182a2c5ea3deb1a -r0e541f9ed4d56646332e86aea1b3c699c650563b --- Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/PropertyClasses/GrassCoverErosionInwardsInputContextProperties.cs (.../GrassCoverErosionInwardsInputContextProperties.cs) (revision 439c018be79bddfd3bae1081d182a2c5ea3deb1a) +++ Ringtoets/GrassCoverErosionInwards/src/Ringtoets.GrassCoverErosionInwards.Forms/PropertyClasses/GrassCoverErosionInwardsInputContextProperties.cs (.../GrassCoverErosionInwardsInputContextProperties.cs) (revision 0e541f9ed4d56646332e86aea1b3c699c650563b) @@ -23,6 +23,7 @@ using System.ComponentModel; using System.Drawing.Design; using Core.Common.Base.Data; +using Core.Common.Base.Geometry; using Core.Common.Gui.Attributes; using Core.Common.Gui.PropertyBag; using Core.Common.Utils.Attributes; @@ -50,6 +51,7 @@ private const int criticalFlowRatePropertyIndex = 7; private const int hydraulicBoundaryLocationPropertyIndex = 8; private const int calculateDikeHeightPropertyIndex = 9; + private const int worldReferencePointPropertyIndex = 10; [PropertyOrder(dikeProfilePropertyIndex)] [Editor(typeof(GrassCoverErosionInwardsInputContextDikeProfileEditor), typeof(UITypeEditor))] @@ -171,6 +173,20 @@ } } + [PropertyOrder(worldReferencePointPropertyIndex)] + [ResourcesCategory(typeof(Resources), "Categories_Schematisation")] + [ResourcesDisplayName(typeof(Resources), "WorldReferencePoint_DisplayName")] + [ResourcesDescription(typeof(Resources), "WorldReferencePoint_Description")] + public Point2D WorldReferencePoint + { + get + { + return data.WrappedData.DikeProfile == null ? null : + new Point2D( + new RoundedDouble(0, data.WrappedData.DikeProfile.WorldReferencePoint.X), + new RoundedDouble(0, data.WrappedData.DikeProfile.WorldReferencePoint.Y)); + } + } [PropertyOrder(criticalFlowRatePropertyIndex)] [TypeConverter(typeof(ExpandableObjectConverter))] Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Forms.Test/PropertyClasses/DikeProfilePropertiesTest.cs =================================================================== diff -u -rb954fb6f2dd56ffb96be7b61ab129f19d879d2ab -r0e541f9ed4d56646332e86aea1b3c699c650563b --- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Forms.Test/PropertyClasses/DikeProfilePropertiesTest.cs (.../DikeProfilePropertiesTest.cs) (revision b954fb6f2dd56ffb96be7b61ab129f19d879d2ab) +++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Forms.Test/PropertyClasses/DikeProfilePropertiesTest.cs (.../DikeProfilePropertiesTest.cs) (revision 0e541f9ed4d56646332e86aea1b3c699c650563b) @@ -47,7 +47,7 @@ { // Setup const string name = "Dijkprofiel"; - var dikeProfile = new DikeProfile(new Point2D(0, 0), new RoughnessPoint[0], new Point2D[0], + var dikeProfile = new DikeProfile(new Point2D(12.34, 56.78), new RoughnessPoint[0], new Point2D[0], null, new DikeProfile.ConstructionProperties { Name = name @@ -60,6 +60,7 @@ }; // Assert + Assert.AreEqual(new Point2D(12, 57), properties.WorldReferencePoint); Assert.AreEqual(name, properties.Name); Assert.AreEqual(2, properties.Orientation.NumberOfDecimalPlaces); Assert.AreEqual(0.0, properties.Orientation.Value); @@ -86,7 +87,7 @@ // Assert var dynamicPropertyBag = new DynamicPropertyBag(properties); PropertyDescriptorCollection dynamicProperties = dynamicPropertyBag.GetProperties(); - Assert.AreEqual(7, dynamicProperties.Count); + Assert.AreEqual(8, dynamicProperties.Count); PropertyDescriptor nameProperty = dynamicProperties[namePropertyIndex]; Assert.IsNotNull(nameProperty); @@ -132,6 +133,13 @@ Assert.AreEqual("Schematisatie", dikeHeightProperty.Category); Assert.AreEqual("Dijkhoogte [m+NAP]", dikeHeightProperty.DisplayName); Assert.AreEqual("De hoogte van de dijk [m+NAP].", dikeHeightProperty.Description); + + PropertyDescriptor worldReferencePointProperty = dynamicProperties[worldReferencePointPropertyIndex]; + Assert.IsNotNull(worldReferencePointProperty); + Assert.IsTrue(worldReferencePointProperty.IsReadOnly); + Assert.AreEqual("Schematisatie", worldReferencePointProperty.Category); + Assert.AreEqual("Locatie (RD) [m]", worldReferencePointProperty.DisplayName); + Assert.AreEqual("De coördinaten van de locatie in het Rijksdriehoeksstelsel.", worldReferencePointProperty.Description); } private const int namePropertyIndex = 0; @@ -140,5 +148,6 @@ private const int foreshorePropertyIndex = 3; private const int dikeGeometryPropertyIndex = 4; private const int dikeHeightPropertyIndex = 5; + private const int worldReferencePointPropertyIndex = 6; } } \ No newline at end of file Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Forms.Test/PropertyClasses/GrassCoverErosionInwardsInputContextPropertiesTest.cs =================================================================== diff -u -r1d88fa250061d277c8d5c999d998c6885ab917b3 -r0e541f9ed4d56646332e86aea1b3c699c650563b --- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Forms.Test/PropertyClasses/GrassCoverErosionInwardsInputContextPropertiesTest.cs (.../GrassCoverErosionInwardsInputContextPropertiesTest.cs) (revision 1d88fa250061d277c8d5c999d998c6885ab917b3) +++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Forms.Test/PropertyClasses/GrassCoverErosionInwardsInputContextPropertiesTest.cs (.../GrassCoverErosionInwardsInputContextPropertiesTest.cs) (revision 0e541f9ed4d56646332e86aea1b3c699c650563b) @@ -67,7 +67,45 @@ var input = new GrassCoverErosionInwardsInput { - DikeProfile = new DikeProfile(new Point2D(0, 0), new RoughnessPoint[0], new Point2D[0], + HydraulicBoundaryLocation = new HydraulicBoundaryLocation(1, "", 0, 0) + }; + var inputContext = new GrassCoverErosionInwardsInputContext(input, calculationMock, failureMechanismMock, assessmentSectionMock); + + // Call + var properties = new GrassCoverErosionInwardsInputContextProperties + { + Data = inputContext + }; + + // Assert + Assert.AreEqual(2, properties.Orientation.NumberOfDecimalPlaces); + Assert.IsNull(properties.DikeProfile); + Assert.AreEqual(0.0, properties.Orientation.Value); + Assert.AreSame(inputContext, properties.BreakWater.Data); + Assert.AreSame(inputContext, properties.Foreshore.Data); + Assert.AreSame(inputContext, properties.DikeGeometry.Data); + Assert.AreEqual(2, properties.DikeHeight.NumberOfDecimalPlaces); + Assert.AreEqual(0.0, properties.DikeHeight.Value); + Assert.AreEqual(input.CriticalFlowRate.Mean, properties.CriticalFlowRate.Mean); + Assert.AreEqual(input.CriticalFlowRate.StandardDeviation, properties.CriticalFlowRate.StandardDeviation); + Assert.AreSame(input.HydraulicBoundaryLocation, properties.HydraulicBoundaryLocation); + Assert.AreEqual(input.CalculateDikeHeight, properties.CalculateDikeHeight); + Assert.IsNull(properties.WorldReferencePoint); + mockRepository.VerifyAll(); + } + + [Test] + public void Data_SetNewInputContextInstanceWithDikeProfile_ReturnCorrectPropertyValues() + { + // Setup + var assessmentSectionMock = mockRepository.StrictMock(); + var failureMechanismMock = mockRepository.StrictMock(); + var calculationMock = mockRepository.StrictMock(); + mockRepository.ReplayAll(); + + var input = new GrassCoverErosionInwardsInput + { + DikeProfile = new DikeProfile(new Point2D(12.34, 56.78), new RoughnessPoint[0], new Point2D[0], null, new DikeProfile.ConstructionProperties()), HydraulicBoundaryLocation = new HydraulicBoundaryLocation(1, "", 0, 0) }; @@ -92,6 +130,7 @@ Assert.AreEqual(input.CriticalFlowRate.StandardDeviation, properties.CriticalFlowRate.StandardDeviation); Assert.AreSame(input.HydraulicBoundaryLocation, properties.HydraulicBoundaryLocation); Assert.AreEqual(input.CalculateDikeHeight, properties.CalculateDikeHeight); + Assert.AreEqual(new Point2D(12, 57), properties.WorldReferencePoint); mockRepository.VerifyAll(); } @@ -164,7 +203,7 @@ // Assert var dynamicPropertyBag = new DynamicPropertyBag(properties); PropertyDescriptorCollection dynamicProperties = dynamicPropertyBag.GetProperties(); - Assert.AreEqual(10, dynamicProperties.Count); + Assert.AreEqual(11, dynamicProperties.Count); PropertyDescriptor dikeProfileProperty = dynamicProperties[dikeProfilePropertyIndex]; Assert.IsNotNull(dikeProfileProperty); @@ -226,11 +265,18 @@ Assert.AreEqual("Locatie met hydraulische randvoorwaarden", hydraulicBoundaryLocationProperty.DisplayName); Assert.AreEqual("De locatie met hydraulische randvoorwaarden.", hydraulicBoundaryLocationProperty.Description); - PropertyDescriptor calculateDikeHeightProperty = dynamicProperties[calculateDikeHeightPropertyIndex]; - Assert.IsNotNull(calculateDikeHeightProperty); - Assert.AreEqual("Schematisatie", calculateDikeHeightProperty.Category); - Assert.AreEqual("HBN berekenen", calculateDikeHeightProperty.DisplayName); - Assert.AreEqual("Geeft aan of ook het Hydraulisch Belasting Niveau (HBN) moet worden berekend.", calculateDikeHeightProperty.Description); + Assert.IsNotNull(dynamicProperties[calculateDikeHeightPropertyIndex]); + Assert.AreEqual("Schematisatie", dynamicProperties[calculateDikeHeightPropertyIndex].Category); + Assert.AreEqual("HBN berekenen", dynamicProperties[calculateDikeHeightPropertyIndex].DisplayName); + Assert.AreEqual("Geeft aan of ook het Hydraulisch Belasting Niveau (HBN) moet worden berekend.", dynamicProperties[calculateDikeHeightPropertyIndex].Description); + + PropertyDescriptor worldReferencePointProperty = dynamicProperties[worldReferencePointPropertyIndex]; + Assert.IsNotNull(worldReferencePointProperty); + Assert.IsTrue(worldReferencePointProperty.IsReadOnly); + Assert.AreEqual("Schematisatie", worldReferencePointProperty.Category); + Assert.AreEqual("Locatie (RD) [m]", worldReferencePointProperty.DisplayName); + Assert.AreEqual("De coördinaten van de locatie in het Rijksdriehoeksstelsel.", worldReferencePointProperty.Description); + mockRepository.VerifyAll(); } @@ -243,5 +289,6 @@ private const int criticalFlowRatePropertyIndex = 6; private const int hydraulicBoundaryLocationPropertyIndex = 7; private const int calculateDikeHeightPropertyIndex = 8; + private const int worldReferencePointPropertyIndex = 9; } } \ No newline at end of file Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Properties/Resources.Designer.cs =================================================================== diff -u -r14980c98236ec646b19933ace1f6d95fadb52a52 -r0e541f9ed4d56646332e86aea1b3c699c650563b --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 14980c98236ec646b19933ace1f6d95fadb52a52) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Properties/Resources.Designer.cs (.../Resources.Designer.cs) (revision 0e541f9ed4d56646332e86aea1b3c699c650563b) @@ -401,7 +401,7 @@ } /// - /// Looks up a localized string similar to Coördinaten. + /// Looks up a localized string similar to Coördinaten [m]. /// public static string HydraulicBoundaryDatabase_Locations_Coordinates_DisplayName { get { Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Properties/Resources.resx =================================================================== diff -u -r14980c98236ec646b19933ace1f6d95fadb52a52 -r0e541f9ed4d56646332e86aea1b3c699c650563b --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Properties/Resources.resx (.../Resources.resx) (revision 14980c98236ec646b19933ace1f6d95fadb52a52) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Properties/Resources.resx (.../Resources.resx) (revision 0e541f9ed4d56646332e86aea1b3c699c650563b) @@ -178,7 +178,7 @@ Coördinaten van de hydraulische randvoorwaardenlocatie. - Coördinaten + Coördinaten [m] Locaties uit de hydraulische randvoorwaardendatabase. Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/PropertyClasses/HydraulicBoundaryLocationPropertiesTest.cs =================================================================== diff -u -r3ac9f7ffa3f760154718739fd58904e1eaf4f284 -r0e541f9ed4d56646332e86aea1b3c699c650563b --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/PropertyClasses/HydraulicBoundaryLocationPropertiesTest.cs (.../HydraulicBoundaryLocationPropertiesTest.cs) (revision 3ac9f7ffa3f760154718739fd58904e1eaf4f284) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/PropertyClasses/HydraulicBoundaryLocationPropertiesTest.cs (.../HydraulicBoundaryLocationPropertiesTest.cs) (revision 0e541f9ed4d56646332e86aea1b3c699c650563b) @@ -126,7 +126,7 @@ var dynamicPropertyBag = new DynamicPropertyBag(hydraulicBoundaryLocationProperties); const string expectedIdDisplayName = "ID"; const string expectedNameDisplayName = "Naam"; - const string expectedLocationDisplayName = "Coördinaten"; + const string expectedLocationDisplayName = "Coördinaten [m]"; const string expectedDesignWaterLevelDisplayName = "Toetspeil [m+NAP]"; const string expectedIdDescription = "Id van de hydraulische randvoorwaardenlocatie in de database."; const string expectedNameDescriptione = "Naam van de hydraulische randvoorwaardenlocatie.";