Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/StrengthStabilityLengthwiseConstructionSectionResultRowTest.cs =================================================================== diff -u -r999ba524ca29111b9474209a11b7aeabf233409f -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/StrengthStabilityLengthwiseConstructionSectionResultRowTest.cs (.../StrengthStabilityLengthwiseConstructionSectionResultRowTest.cs) (revision 999ba524ca29111b9474209a11b7aeabf233409f) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/StrengthStabilityLengthwiseConstructionSectionResultRowTest.cs (.../StrengthStabilityLengthwiseConstructionSectionResultRowTest.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) @@ -99,5 +99,20 @@ // Assert Assert.AreEqual(newValue, result.AssessmentLayerThree, row.AssessmentLayerThree.GetAccuracy()); } + + [Test] + public void Update_Always_ThrowsNotImplementedException() + { + // Setup + FailureMechanismSection section = FailureMechanismSectionTestFactory.CreateFailureMechanismSection(); + var result = new StrengthStabilityLengthwiseConstructionFailureMechanismSectionResult(section); + var row = new StrengthStabilityLengthwiseConstructionSectionResultRow(result); + + // Call + TestDelegate call = () => row.Update(); + + // Assert + Assert.Throws(call); + } } } \ No newline at end of file