Index: Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/RingtoetsProjectHelper.cs =================================================================== diff -u -rfe68c3f7cae5946b93d9e27eb532b176a6b26b84 -r4478bdf539df278f9e2aac0f9fe683c34ac55335 --- Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/RingtoetsProjectHelper.cs (.../RingtoetsProjectHelper.cs) (revision fe68c3f7cae5946b93d9e27eb532b176a6b26b84) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/RingtoetsProjectHelper.cs (.../RingtoetsProjectHelper.cs) (revision 4478bdf539df278f9e2aac0f9fe683c34ac55335) @@ -20,6 +20,8 @@ // All rights reserved. using System.Collections.Generic; +using System.Linq; + using Core.Common.Base.Data; using Core.Common.Base.Geometry; using Ringtoets.Common.Data.AssessmentSection; @@ -44,17 +46,26 @@ /// A new complete instance of . public static Project GetFullTestProject() { + ReferenceLine referenceLine = GetReferenceLine(); + Point2D[] referenceLineGeometryPoints = referenceLine.Points.ToArray(); + var assessmentSection = new AssessmentSection(AssessmentSectionComposition.Dike) { Name = "assessmentSection", HydraulicBoundaryDatabase = GetHydraulicBoundaryDatabase(), - ReferenceLine = GetReferenceLine(), + ReferenceLine = referenceLine, PipingFailureMechanism = { StochasticSoilModels = { new StochasticSoilModel(-1, "modelName", "modelSegmentName") { + Geometry = + { + referenceLineGeometryPoints[1], + referenceLineGeometryPoints[2], + referenceLineGeometryPoints[3] + }, StochasticSoilProfiles = { new StochasticSoilProfile(0.2, SoilProfileType.SoilProfile1D, -1) @@ -74,17 +85,17 @@ }, CalculationsGroup = { - //Children = - // { - // new CalculationGroup - // { - // Name = "A" - // }, - // new CalculationGroup - // { - // Name = "B" - // } - // } + Children = + { + new CalculationGroup + { + Name = "A" + }, + new CalculationGroup + { + Name = "B" + } + } } } };