Index: Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/RingtoetsProjectTestHelper.cs =================================================================== diff -u -r944d2501b3f780d208e00015a1b850afad4c3aa8 -r765a93eb01cea4448d1dad2bbd6a4145b07b2d18 --- Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/RingtoetsProjectTestHelper.cs (.../RingtoetsProjectTestHelper.cs) (revision 944d2501b3f780d208e00015a1b850afad4c3aa8) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.TestUtil/RingtoetsProjectTestHelper.cs (.../RingtoetsProjectTestHelper.cs) (revision 765a93eb01cea4448d1dad2bbd6a4145b07b2d18) @@ -72,6 +72,11 @@ SetSectionResults(grassCoverErosionInwardsFailureMechanism.SectionResults, grassCoverErosionInwardsFailureMechanism.Calculations.OfType()); + GrassCoverErosionOutwardsFailureMechanism grassCoverErosionOutwardsFailureMechanism = assessmentSection.GrassCoverErosionOutwards; + ConfigureGrassCoverErosionOutwardsFailureMechanism(grassCoverErosionOutwardsFailureMechanism); + AddSections(grassCoverErosionOutwardsFailureMechanism); + SetSectionResults(grassCoverErosionOutwardsFailureMechanism.SectionResults); + AddSections(assessmentSection.MacrostabilityInwards); SetSectionResults(assessmentSection.MacrostabilityInwards.SectionResults); AddSections(assessmentSection.MacrostabilityOutwards); @@ -84,8 +89,6 @@ SetSectionResults(assessmentSection.WaveImpactAsphaltCover.SectionResults); AddSections(assessmentSection.WaterPressureAsphaltCover); SetSectionResults(assessmentSection.WaterPressureAsphaltCover.SectionResults); - AddSections(assessmentSection.GrassCoverErosionOutwards); - SetSectionResults(assessmentSection.GrassCoverErosionOutwards.SectionResults); AddSections(assessmentSection.GrassCoverSlipOffInwards); SetSectionResults(assessmentSection.GrassCoverSlipOffInwards.SectionResults); AddSections(assessmentSection.GrassCoverSlipOffOutwards); @@ -356,6 +359,11 @@ }); } + private static void ConfigureGrassCoverErosionOutwardsFailureMechanism(GrassCoverErosionOutwardsFailureMechanism failureMechanism) + { + failureMechanism.GeneralInput.N = 15; + } + private static void SetSectionResults(IEnumerable sectionResults) { var random = new Random(21);