Index: Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/RingtoetsProjectTestHelper.cs =================================================================== diff -u -r5f6b3f80bb6747f12157149f7689a8fc7d3552a5 -r638081278e33e132e3ffedd52fff0d6c00ab4728 --- Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/RingtoetsProjectTestHelper.cs (.../RingtoetsProjectTestHelper.cs) (revision 5f6b3f80bb6747f12157149f7689a8fc7d3552a5) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/RingtoetsProjectTestHelper.cs (.../RingtoetsProjectTestHelper.cs) (revision 638081278e33e132e3ffedd52fff0d6c00ab4728) @@ -355,9 +355,12 @@ { failureMechanism.GeneralInput.N = 8; - StabilityPointStructure stabilityPointStructure = new TestStabilityPointStructure(); - failureMechanism.StabilityPointStructures.Add(stabilityPointStructure); - failureMechanism.StabilityPointStructures.Add(new TestStabilityPointStructure()); + StabilityPointStructure stabilityPointStructure = new TestStabilityPointStructure("id structure1"); + failureMechanism.StabilityPointStructures.AddRange(new[] + { + stabilityPointStructure, + new TestStabilityPointStructure("id structure2") + }, "path"); var random = new Random(56); @@ -442,11 +445,11 @@ failureMechanism.GeneralInput.N2A = 6; ClosingStructure closingStructure = new TestClosingStructure("structureA"); - failureMechanism.ClosingStructures.AddRange(new [] + failureMechanism.ClosingStructures.AddRange(new[] { closingStructure, new TestClosingStructure("structureB") - }, @"C:\Folder" ); + }, @"C:\Folder"); ForeshoreProfile foreshoreProfile = failureMechanism.ForeshoreProfiles[0]; HydraulicBoundaryLocation hydroLocation = assessmentSection.HydraulicBoundaryDatabase.Locations[0];