Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/MacrostabilityInwardsSectionResultRowTest.cs =================================================================== diff -u -r9d7a5bd6246ec71a14f1944516d21e06954243f7 -rf1bf048f691ca575f22e8807911ace0338fa425d --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/MacrostabilityInwardsSectionResultRowTest.cs (.../MacrostabilityInwardsSectionResultRowTest.cs) (revision 9d7a5bd6246ec71a14f1944516d21e06954243f7) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/MacrostabilityInwardsSectionResultRowTest.cs (.../MacrostabilityInwardsSectionResultRowTest.cs) (revision f1bf048f691ca575f22e8807911ace0338fa425d) @@ -24,11 +24,8 @@ using Core.Common.Base.Data; using Core.Common.Base.Geometry; using Core.Common.Utils.Reflection; - using NUnit.Framework; - using Rhino.Mocks; - using Ringtoets.Common.Data.FailureMechanism; using Ringtoets.Common.Data.TestUtil; using Ringtoets.Common.Forms.TypeConverters; @@ -70,11 +67,11 @@ Assert.AreEqual(result.AssessmentLayerThree, row.AssessmentLayerThree); Assert.IsTrue(TypeUtils.HasTypeConverter( - r => r.AssessmentLayerTwoA)); + FailureMechanismSectionResultNoProbabilityValueDoubleConverter>( + r => r.AssessmentLayerTwoA)); Assert.IsTrue(TypeUtils.HasTypeConverter( - r => r.AssessmentLayerThree)); + FailureMechanismSectionResultNoValueRoundedDoubleConverter>( + r => r.AssessmentLayerThree)); } [Test] @@ -154,7 +151,7 @@ var row = new MacrostabilityInwardsSectionResultRow(result); // Call - row.AssessmentLayerThree = (RoundedDouble)newValue; + row.AssessmentLayerThree = (RoundedDouble) newValue; // Assert Assert.AreEqual(newValue, result.AssessmentLayerThree, row.AssessmentLayerThree.GetAccuracy()); @@ -166,6 +163,6 @@ { new Point2D(0, 0) }); - } + } } } \ No newline at end of file