Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Forms.Test/PropertyClasses/DikeProfileDikeGeometryPropertiesTest.cs =================================================================== diff -u -r39496fd42e53a9fb20fec4f2a1b4dcdfadcaea3d -r53aef346fd0ee3cc79d1f5df9171c476453f2935 --- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Forms.Test/PropertyClasses/DikeProfileDikeGeometryPropertiesTest.cs (.../DikeProfileDikeGeometryPropertiesTest.cs) (revision 39496fd42e53a9fb20fec4f2a1b4dcdfadcaea3d) +++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Forms.Test/PropertyClasses/DikeProfileDikeGeometryPropertiesTest.cs (.../DikeProfileDikeGeometryPropertiesTest.cs) (revision 53aef346fd0ee3cc79d1f5df9171c476453f2935) @@ -48,7 +48,8 @@ public void Data_SetNewDikeProfileInstance_ReturnCorrectPropertyValues() { // Setup - var dikeProfile = new DikeProfile(new Point2D(0, 0), new RoughnessPoint[0], new Point2D[0]); + var dikeProfile = new DikeProfile(new Point2D(0, 0), new RoughnessPoint[0], new Point2D[0], + null, new DikeProfile.ConstructionProperties()); var properties = new DikeProfileDikeGeometryProperties(); // Call @@ -63,11 +64,12 @@ public void Data_SetDikeProfileInstanceWithData_ReturnCorrectPropertyValues() { // Setup - var dikeProfile = new DikeProfile(new Point2D(0, 0), new [] - { - new RoughnessPoint(new Point2D(0, 0), 0.6), - new RoughnessPoint(new Point2D(1, 1), 0.7) - }, new Point2D[0]); + var dikeProfile = new DikeProfile(new Point2D(0, 0), + new[] + { + new RoughnessPoint(new Point2D(0, 0), 0.6), + new RoughnessPoint(new Point2D(1, 1), 0.7) + }, new Point2D[0], null, new DikeProfile.ConstructionProperties()); var properties = new DikeProfileDikeGeometryProperties(); @@ -93,7 +95,8 @@ public void PropertyAttributes_ReturnExpectedValues() { // Setup - var dikeProfile = new DikeProfile(new Point2D(0, 0), new RoughnessPoint[0], new Point2D[0]); + var dikeProfile = new DikeProfile(new Point2D(0, 0), new RoughnessPoint[0], new Point2D[0], + null, new DikeProfile.ConstructionProperties()); // Call var properties = new DikeProfileDikeGeometryProperties