Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Commands/AssessmentSectionFromFileCommandHandlerTest.cs =================================================================== diff -u -r43ad5cd168824e7ba3b7b772e94b570d12a0597e -r401ea38da560543cd91415c326b9463976b2e80a --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Commands/AssessmentSectionFromFileCommandHandlerTest.cs (.../AssessmentSectionFromFileCommandHandlerTest.cs) (revision 43ad5cd168824e7ba3b7b772e94b570d12a0597e) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Commands/AssessmentSectionFromFileCommandHandlerTest.cs (.../AssessmentSectionFromFileCommandHandlerTest.cs) (revision 401ea38da560543cd91415c326b9463976b2e80a) @@ -24,6 +24,7 @@ using System.Linq; using System.Reflection; using System.Windows.Forms; +using Core.Common.Base.Data; using Core.Common.Base.Geometry; using Core.Common.Base.TestUtil.Geometry; using Core.Common.Controls.DataGrid; @@ -530,9 +531,9 @@ NormativeNorm = useSignalingValue ? NormType.Signaling : NormType.LowerLimit } }; - assessmentSection.GrassCoverErosionInwards.GeneralInput.N = 2; - assessmentSection.GrassCoverErosionOutwards.GeneralInput.N = 2; - assessmentSection.HeightStructures.GeneralInput.N = 2; + assessmentSection.GrassCoverErosionInwards.GeneralInput.N = (RoundedDouble) 2.0; + assessmentSection.GrassCoverErosionOutwards.GeneralInput.N = (RoundedDouble) 2.0; + assessmentSection.HeightStructures.GeneralInput.N = (RoundedDouble) 2.0; assessmentSection.ReferenceLine = new ReferenceLine(); assessmentSection.ReferenceLine.SetGeometry(new[] { @@ -567,21 +568,21 @@ { GeneralInput = { - N = 3 + N = (RoundedDouble) 3.0 } }, GrassCoverErosionOutwards = { GeneralInput = { - N = 3 + N = (RoundedDouble) 3.0 } }, HeightStructures = { GeneralInput = { - N = 3 + N = (RoundedDouble) 3.0 } } }; @@ -639,6 +640,7 @@ Assert.IsNull(actual); return; } + Assert.IsNotNull(actual); Point2D[] expectedPoints = expected.Points.ToArray(); Point2D[] actualPoints = actual.Points.ToArray();