Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Commands/AssessmentSectionFromFileCommandHandler.cs =================================================================== diff -u -r4e578730273a943bb02a2861c694a2707c8ef852 -r74d6d66cabf1b53c7b1d485efb53a940752eb070 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Commands/AssessmentSectionFromFileCommandHandler.cs (.../AssessmentSectionFromFileCommandHandler.cs) (revision 4e578730273a943bb02a2861c694a2707c8ef852) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Commands/AssessmentSectionFromFileCommandHandler.cs (.../AssessmentSectionFromFileCommandHandler.cs) (revision 74d6d66cabf1b53c7b1d485efb53a940752eb070) @@ -123,6 +123,7 @@ private static void SetFailureMechanismsValueN(AssessmentSection assessmentSection, int n) { assessmentSection.GrassCoverErosionInwards.GeneralInput.N = n; + assessmentSection.GrassCoverErosionOutwards.GeneralInput.N = n; assessmentSection.HeightStructures.GeneralInput.N = n; } Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Commands/AssessmentSectionFromFileCommandHandlerTest.cs =================================================================== diff -u -r7ae9100ff4e61169edcefaeb01b72d492431742f -r74d6d66cabf1b53c7b1d485efb53a940752eb070 --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Commands/AssessmentSectionFromFileCommandHandlerTest.cs (.../AssessmentSectionFromFileCommandHandlerTest.cs) (revision 7ae9100ff4e61169edcefaeb01b72d492431742f) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Commands/AssessmentSectionFromFileCommandHandlerTest.cs (.../AssessmentSectionFromFileCommandHandlerTest.cs) (revision 74d6d66cabf1b53c7b1d485efb53a940752eb070) @@ -491,6 +491,7 @@ Id = "1-2", Name = "Traject 1-2" }; expectedAssessmentSection.GrassCoverErosionInwards.GeneralInput.N = 2; + expectedAssessmentSection.GrassCoverErosionOutwards.GeneralInput.N = 2; expectedAssessmentSection.HeightStructures.GeneralInput.N = 2; expectedAssessmentSection.ReferenceLine = new ReferenceLine(); expectedAssessmentSection.ReferenceLine.SetGeometry(new[] @@ -532,6 +533,7 @@ } }; assessmentSection.GrassCoverErosionInwards.GeneralInput.N = 2; + assessmentSection.GrassCoverErosionOutwards.GeneralInput.N = 2; assessmentSection.HeightStructures.GeneralInput.N = 2; assessmentSection.ReferenceLine = new ReferenceLine(); assessmentSection.ReferenceLine.SetGeometry(new[] @@ -568,6 +570,13 @@ N = 3 } }, + GrassCoverErosionOutwards = + { + GeneralInput = + { + N = 3 + } + }, HeightStructures = { GeneralInput = @@ -613,6 +622,7 @@ Assert.AreEqual(expected.Composition, actual.Composition); Assert.AreEqual(expected.GrassCoverErosionInwards.GeneralInput.N, actual.GrassCoverErosionInwards.GeneralInput.N); + Assert.AreEqual(expected.GrassCoverErosionOutwards.GeneralInput.N, actual.GrassCoverErosionOutwards.GeneralInput.N); Assert.AreEqual(expected.HeightStructures.GeneralInput.N, actual.HeightStructures.GeneralInput.N); AssertReferenceLine(expected.ReferenceLine, actual.ReferenceLine);