Index: Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Utils.Test/GrassCoverErosionInwardsHelperTest.cs =================================================================== diff -u -rf109332b5185b4445e2f1b9386dc1fe4063ff20f -r53aef346fd0ee3cc79d1f5df9171c476453f2935 --- Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Utils.Test/GrassCoverErosionInwardsHelperTest.cs (.../GrassCoverErosionInwardsHelperTest.cs) (revision f109332b5185b4445e2f1b9386dc1fe4063ff20f) +++ Ringtoets/GrassCoverErosionInwards/test/Ringtoets.GrassCoverErosionInwards.Utils.Test/GrassCoverErosionInwardsHelperTest.cs (.../GrassCoverErosionInwardsHelperTest.cs) (revision 53aef346fd0ee3cc79d1f5df9171c476453f2935) @@ -118,19 +118,22 @@ public void CollectCalculationsPerSegment_SingleCalculationPerSegment_OneCalculationPerSegment() { // Setup - GrassCoverErosionInwardsCalculation[] calculations = { + GrassCoverErosionInwardsCalculation[] calculations = + { new GrassCoverErosionInwardsCalculation { InputParameters = { - DikeProfile = new DikeProfile(new Point2D(1.1, 2.2), new RoughnessPoint[0], new Point2D[0]) + DikeProfile = new DikeProfile(new Point2D(1.1, 2.2), new RoughnessPoint[0], new Point2D[0], + null, new DikeProfile.ConstructionProperties()) } }, new GrassCoverErosionInwardsCalculation { InputParameters = { - DikeProfile = new DikeProfile(new Point2D(50.0, 66.0), new RoughnessPoint[0], new Point2D[0]) + DikeProfile = new DikeProfile(new Point2D(50.0, 66.0), new RoughnessPoint[0], new Point2D[0], + null, new DikeProfile.ConstructionProperties()) } } }; @@ -233,7 +236,8 @@ { InputParameters = { - DikeProfile = new DikeProfile(new Point2D(1.1, 2.2), new RoughnessPoint[0], new Point2D[0]) + DikeProfile = new DikeProfile(new Point2D(1.1, 2.2), new RoughnessPoint[0], new Point2D[0], + null, new DikeProfile.ConstructionProperties()) } }; @@ -253,7 +257,8 @@ { InputParameters = { - DikeProfile = new DikeProfile(new Point2D(50.0, 66.0), new RoughnessPoint[0], new Point2D[0]) + DikeProfile = new DikeProfile(new Point2D(50.0, 66.0), new RoughnessPoint[0], new Point2D[0], + null, new DikeProfile.ConstructionProperties()) } }; @@ -291,19 +296,22 @@ })) }; - private readonly GrassCoverErosionInwardsCalculation[] twoCalculations = { + private readonly GrassCoverErosionInwardsCalculation[] twoCalculations = + { new GrassCoverErosionInwardsCalculation { InputParameters = { - DikeProfile = new DikeProfile(new Point2D(1.1, 2.2), new RoughnessPoint[0], new Point2D[0]) + DikeProfile = new DikeProfile(new Point2D(1.1, 2.2), new RoughnessPoint[0], new Point2D[0], + null, new DikeProfile.ConstructionProperties()) } }, new GrassCoverErosionInwardsCalculation { InputParameters = { - DikeProfile = new DikeProfile(new Point2D(3.3, 4.4), new RoughnessPoint[0], new Point2D[0]) + DikeProfile = new DikeProfile(new Point2D(3.3, 4.4), new RoughnessPoint[0], new Point2D[0], + null, new DikeProfile.ConstructionProperties()) } } };