Index: Ringtoets/DuneErosion/src/Ringtoets.DuneErosion.Forms/Views/DuneErosionSectionResultRow.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/DuneErosion/src/Ringtoets.DuneErosion.Forms/Views/DuneErosionSectionResultRow.cs (.../DuneErosionSectionResultRow.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/DuneErosion/src/Ringtoets.DuneErosion.Forms/Views/DuneErosionSectionResultRow.cs (.../DuneErosionSectionResultRow.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -90,9 +90,6 @@ } } - public override void Update() - { - throw new NotImplementedException(); - } + public override void Update() {} } } \ No newline at end of file Index: Ringtoets/DuneErosion/test/Ringtoets.DuneErosion.Forms.Test/Views/DuneErosionSectionResultRowTest.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/DuneErosion/test/Ringtoets.DuneErosion.Forms.Test/Views/DuneErosionSectionResultRowTest.cs (.../DuneErosionSectionResultRowTest.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/DuneErosion/test/Ringtoets.DuneErosion.Forms.Test/Views/DuneErosionSectionResultRowTest.cs (.../DuneErosionSectionResultRowTest.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -116,20 +116,5 @@ // Assert Assert.AreEqual(newValue, result.AssessmentLayerThree, row.AssessmentLayerThree.GetAccuracy()); } - - [Test] - public void Update_Always_ThrowsNotImplementedException() - { - // Setup - FailureMechanismSection section = FailureMechanismSectionTestFactory.CreateFailureMechanismSection(); - var result = new DuneErosionFailureMechanismSectionResult(section); - var row = new DuneErosionSectionResultRow(result); - - // Call - TestDelegate call = () => row.Update(); - - // Assert - Assert.Throws(call); - } } } \ No newline at end of file Index: Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Forms/Views/GrassCoverErosionOutwardsFailureMechanismSectionResultRow.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Forms/Views/GrassCoverErosionOutwardsFailureMechanismSectionResultRow.cs (.../GrassCoverErosionOutwardsFailureMechanismSectionResultRow.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/GrassCoverErosionOutwards/src/Ringtoets.GrassCoverErosionOutwards.Forms/Views/GrassCoverErosionOutwardsFailureMechanismSectionResultRow.cs (.../GrassCoverErosionOutwardsFailureMechanismSectionResultRow.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -91,9 +91,6 @@ } } - public override void Update() - { - throw new NotImplementedException(); - } + public override void Update() {} } } \ No newline at end of file Index: Ringtoets/GrassCoverErosionOutwards/test/Ringtoets.GrassCoverErosionOutwards.Forms.Test/Views/GrassCoverErosionOutwardsFailureMechanismSectionResultRowTest.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/GrassCoverErosionOutwards/test/Ringtoets.GrassCoverErosionOutwards.Forms.Test/Views/GrassCoverErosionOutwardsFailureMechanismSectionResultRowTest.cs (.../GrassCoverErosionOutwardsFailureMechanismSectionResultRowTest.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/GrassCoverErosionOutwards/test/Ringtoets.GrassCoverErosionOutwards.Forms.Test/Views/GrassCoverErosionOutwardsFailureMechanismSectionResultRowTest.cs (.../GrassCoverErosionOutwardsFailureMechanismSectionResultRowTest.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -117,20 +117,5 @@ // Assert Assert.AreEqual(assessmentLayerThree, sectionResult.AssessmentLayerThree); } - - [Test] - public void Update_Always_ThrowsNotImplementedException() - { - // Setup - FailureMechanismSection section = FailureMechanismSectionTestFactory.CreateFailureMechanismSection(); - var result = new GrassCoverErosionOutwardsFailureMechanismSectionResult(section); - var row = new GrassCoverErosionOutwardsFailureMechanismSectionResultRow(result); - - // Call - TestDelegate call = () => row.Update(); - - // Assert - Assert.Throws(call); - } } } \ No newline at end of file Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/GrassCoverSlipOffInwardsSectionResultRow.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/GrassCoverSlipOffInwardsSectionResultRow.cs (.../GrassCoverSlipOffInwardsSectionResultRow.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/GrassCoverSlipOffInwardsSectionResultRow.cs (.../GrassCoverSlipOffInwardsSectionResultRow.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -90,9 +90,6 @@ } } - public override void Update() - { - throw new NotImplementedException(); - } + public override void Update() {} } } \ No newline at end of file Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/GrassCoverSlipOffOutwardsSectionResultRow.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/GrassCoverSlipOffOutwardsSectionResultRow.cs (.../GrassCoverSlipOffOutwardsSectionResultRow.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/GrassCoverSlipOffOutwardsSectionResultRow.cs (.../GrassCoverSlipOffOutwardsSectionResultRow.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -90,9 +90,6 @@ } } - public override void Update() - { - throw new NotImplementedException(); - } + public override void Update() {} } } \ No newline at end of file Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/MicrostabilitySectionResultRow.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/MicrostabilitySectionResultRow.cs (.../MicrostabilitySectionResultRow.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/MicrostabilitySectionResultRow.cs (.../MicrostabilitySectionResultRow.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -91,9 +91,6 @@ } } - public override void Update() - { - throw new NotImplementedException(); - } + public override void Update() {} } } \ No newline at end of file Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/PipingStructureSectionResultRow.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/PipingStructureSectionResultRow.cs (.../PipingStructureSectionResultRow.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/PipingStructureSectionResultRow.cs (.../PipingStructureSectionResultRow.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -90,9 +90,6 @@ } } - public override void Update() - { - throw new NotImplementedException(); - } + public override void Update() {} } } \ No newline at end of file Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/StrengthStabilityLengthwiseConstructionSectionResultRow.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/StrengthStabilityLengthwiseConstructionSectionResultRow.cs (.../StrengthStabilityLengthwiseConstructionSectionResultRow.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/StrengthStabilityLengthwiseConstructionSectionResultRow.cs (.../StrengthStabilityLengthwiseConstructionSectionResultRow.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -76,9 +76,6 @@ } } - public override void Update() - { - throw new NotImplementedException(); - } + public override void Update() {} } } \ No newline at end of file Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/TechnicalInnovationSectionResultRow.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/TechnicalInnovationSectionResultRow.cs (.../TechnicalInnovationSectionResultRow.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/TechnicalInnovationSectionResultRow.cs (.../TechnicalInnovationSectionResultRow.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -74,9 +74,6 @@ } } - public override void Update() - { - throw new NotImplementedException(); - } + public override void Update() {} } } \ No newline at end of file Index: Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/WaterPressureAsphaltCoverSectionResultRow.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/WaterPressureAsphaltCoverSectionResultRow.cs (.../WaterPressureAsphaltCoverSectionResultRow.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/Integration/src/Ringtoets.Integration.Forms/Views/SectionResultRows/WaterPressureAsphaltCoverSectionResultRow.cs (.../WaterPressureAsphaltCoverSectionResultRow.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -74,9 +74,6 @@ } } - public override void Update() - { - throw new NotImplementedException(); - } + public override void Update() {} } } \ No newline at end of file Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/GrassCoverSlipOffInwardsSectionResultRowTest.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/GrassCoverSlipOffInwardsSectionResultRowTest.cs (.../GrassCoverSlipOffInwardsSectionResultRowTest.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/GrassCoverSlipOffInwardsSectionResultRowTest.cs (.../GrassCoverSlipOffInwardsSectionResultRowTest.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -117,20 +117,5 @@ // Assert Assert.AreEqual(newValue, result.AssessmentLayerThree, row.AssessmentLayerThree.GetAccuracy()); } - - [Test] - public void Update_Always_ThrowsNotImplementedException() - { - // Setup - FailureMechanismSection section = FailureMechanismSectionTestFactory.CreateFailureMechanismSection(); - var result = new GrassCoverSlipOffInwardsFailureMechanismSectionResult(section); - var row = new GrassCoverSlipOffInwardsSectionResultRow(result); - - // Call - TestDelegate call = () => row.Update(); - - // Assert - Assert.Throws(call); - } } } \ No newline at end of file Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/GrassCoverSlipOffOutwardsSectionResultRowTest.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/GrassCoverSlipOffOutwardsSectionResultRowTest.cs (.../GrassCoverSlipOffOutwardsSectionResultRowTest.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/GrassCoverSlipOffOutwardsSectionResultRowTest.cs (.../GrassCoverSlipOffOutwardsSectionResultRowTest.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -117,20 +117,5 @@ // Assert Assert.AreEqual(newValue, result.AssessmentLayerThree, row.AssessmentLayerThree.GetAccuracy()); } - - [Test] - public void Update_Always_ThrowsNotImplementedException() - { - // Setup - FailureMechanismSection section = FailureMechanismSectionTestFactory.CreateFailureMechanismSection(); - var result = new GrassCoverSlipOffOutwardsFailureMechanismSectionResult(section); - var row = new GrassCoverSlipOffOutwardsSectionResultRow(result); - - // Call - TestDelegate call = () => row.Update(); - - // Assert - Assert.Throws(call); - } } } \ No newline at end of file Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/MicrostabilitySectionResultRowTest.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/MicrostabilitySectionResultRowTest.cs (.../MicrostabilitySectionResultRowTest.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/MicrostabilitySectionResultRowTest.cs (.../MicrostabilitySectionResultRowTest.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -116,20 +116,5 @@ // Assert Assert.AreEqual(newValue, result.AssessmentLayerThree, row.AssessmentLayerThree.GetAccuracy()); } - - [Test] - public void Update_Always_ThrowsNotImplementedException() - { - // Setup - FailureMechanismSection section = FailureMechanismSectionTestFactory.CreateFailureMechanismSection(); - var result = new MicrostabilityFailureMechanismSectionResult(section); - var row = new MicrostabilitySectionResultRow(result); - - // Call - TestDelegate call = () => row.Update(); - - // Assert - Assert.Throws(call); - } } } \ No newline at end of file Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/PipingStructureSectionResultRowTest.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/PipingStructureSectionResultRowTest.cs (.../PipingStructureSectionResultRowTest.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/PipingStructureSectionResultRowTest.cs (.../PipingStructureSectionResultRowTest.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -116,20 +116,5 @@ // Assert Assert.AreEqual(newValue, result.AssessmentLayerThree, row.AssessmentLayerThree.GetAccuracy()); } - - [Test] - public void Update_Always_ThrowsNotImplementedException() - { - // Setup - FailureMechanismSection section = FailureMechanismSectionTestFactory.CreateFailureMechanismSection(); - var result = new PipingStructureFailureMechanismSectionResult(section); - var row = new PipingStructureSectionResultRow(result); - - // Call - TestDelegate call = () => row.Update(); - - // Assert - Assert.Throws(call); - } } } \ No newline at end of file Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/StrengthStabilityLengthwiseConstructionSectionResultRowTest.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/StrengthStabilityLengthwiseConstructionSectionResultRowTest.cs (.../StrengthStabilityLengthwiseConstructionSectionResultRowTest.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/StrengthStabilityLengthwiseConstructionSectionResultRowTest.cs (.../StrengthStabilityLengthwiseConstructionSectionResultRowTest.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -99,20 +99,5 @@ // 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 Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/TechnicalInnovationSectionResultRowTest.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/TechnicalInnovationSectionResultRowTest.cs (.../TechnicalInnovationSectionResultRowTest.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/TechnicalInnovationSectionResultRowTest.cs (.../TechnicalInnovationSectionResultRowTest.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -99,20 +99,5 @@ // Assert Assert.AreEqual(newValue, result.AssessmentLayerThree, row.AssessmentLayerThree.GetAccuracy()); } - - [Test] - public void Update_Always_ThrowsNotImplementedException() - { - // Setup - FailureMechanismSection section = FailureMechanismSectionTestFactory.CreateFailureMechanismSection(); - var result = new TechnicalInnovationFailureMechanismSectionResult(section); - var row = new TechnicalInnovationSectionResultRow(result); - - // Call - TestDelegate call = () => row.Update(); - - // Assert - Assert.Throws(call); - } } } \ No newline at end of file Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/WaterPressureAsphaltCoverSectionResultRowTest.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/WaterPressureAsphaltCoverSectionResultRowTest.cs (.../WaterPressureAsphaltCoverSectionResultRowTest.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRows/WaterPressureAsphaltCoverSectionResultRowTest.cs (.../WaterPressureAsphaltCoverSectionResultRowTest.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -99,20 +99,5 @@ // Assert Assert.AreEqual(newValue, result.AssessmentLayerThree, row.AssessmentLayerThree.GetAccuracy()); } - - [Test] - public void Update_Always_ThrowsNotImplementedException() - { - // Setup - FailureMechanismSection section = FailureMechanismSectionTestFactory.CreateFailureMechanismSection(); - var result = new WaterPressureAsphaltCoverFailureMechanismSectionResult(section); - var row = new WaterPressureAsphaltCoverSectionResultRow(result); - - // Call - TestDelegate call = () => row.Update(); - - // Assert - Assert.Throws(call); - } } } \ No newline at end of file Index: Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Forms/Views/MacroStabilityInwardsFailureMechanismSectionResultRow.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Forms/Views/MacroStabilityInwardsFailureMechanismSectionResultRow.cs (.../MacroStabilityInwardsFailureMechanismSectionResultRow.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/MacroStabilityInwards/src/Ringtoets.MacroStabilityInwards.Forms/Views/MacroStabilityInwardsFailureMechanismSectionResultRow.cs (.../MacroStabilityInwardsFailureMechanismSectionResultRow.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -133,9 +133,6 @@ } } - public override void Update() - { - throw new NotImplementedException(); - } + public override void Update() {} } } \ No newline at end of file Index: Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Forms.Test/Views/MacroStabilityInwardsFailureMechanismSectionResultRowTest.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Forms.Test/Views/MacroStabilityInwardsFailureMechanismSectionResultRowTest.cs (.../MacroStabilityInwardsFailureMechanismSectionResultRowTest.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/MacroStabilityInwards/test/Ringtoets.MacroStabilityInwards.Forms.Test/Views/MacroStabilityInwardsFailureMechanismSectionResultRowTest.cs (.../MacroStabilityInwardsFailureMechanismSectionResultRowTest.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -220,30 +220,5 @@ Assert.AreEqual(assessmentLayerThree, sectionResult.AssessmentLayerThree); mocks.VerifyAll(); } - - [Test] - public void Update_Always_ThrowsNotImplementedException() - { - // Setup - var failureMechanism = new MacroStabilityInwardsFailureMechanism(); - - var mocks = new MockRepository(); - IAssessmentSection assessmentSection = AssessmentSectionHelper.CreateAssessmentSectionStub(failureMechanism, mocks); - mocks.ReplayAll(); - - FailureMechanismSection section = FailureMechanismSectionTestFactory.CreateFailureMechanismSection(); - var result = new MacroStabilityInwardsFailureMechanismSectionResult(section); - var row = new MacroStabilityInwardsFailureMechanismSectionResultRow(result, - Enumerable.Empty(), - failureMechanism, - assessmentSection); - - // Call - TestDelegate call = () => row.Update(); - - // Assert - Assert.Throws(call); - mocks.VerifyAll(); - } } } \ No newline at end of file Index: Ringtoets/Piping/src/Ringtoets.Piping.Forms/Views/PipingFailureMechanismSectionResultRow.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/Piping/src/Ringtoets.Piping.Forms/Views/PipingFailureMechanismSectionResultRow.cs (.../PipingFailureMechanismSectionResultRow.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/Piping/src/Ringtoets.Piping.Forms/Views/PipingFailureMechanismSectionResultRow.cs (.../PipingFailureMechanismSectionResultRow.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -132,9 +132,6 @@ } } - public override void Update() - { - throw new NotImplementedException(); - } + public override void Update() {} } } \ No newline at end of file Index: Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/Views/PipingFailureMechanismSectionResultRowTest.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/Views/PipingFailureMechanismSectionResultRowTest.cs (.../PipingFailureMechanismSectionResultRowTest.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/Piping/test/Ringtoets.Piping.Forms.Test/Views/PipingFailureMechanismSectionResultRowTest.cs (.../PipingFailureMechanismSectionResultRowTest.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -217,30 +217,5 @@ Assert.AreEqual(assessmentLayerThree, sectionResult.AssessmentLayerThree); mocks.VerifyAll(); } - - [Test] - public void Update_Always_ThrowsNotImplementedException() - { - // Setup - var failureMechanism = new PipingFailureMechanism(); - - var mocks = new MockRepository(); - IAssessmentSection assessmentSection = AssessmentSectionHelper.CreateAssessmentSectionStub(failureMechanism, mocks); - mocks.ReplayAll(); - - FailureMechanismSection section = FailureMechanismSectionTestFactory.CreateFailureMechanismSection(); - var result = new PipingFailureMechanismSectionResult(section); - var row = new PipingFailureMechanismSectionResultRow(result, - Enumerable.Empty(), - failureMechanism, - assessmentSection); - - // Call - TestDelegate call = () => row.Update(); - - // Assert - Assert.Throws(call); - mocks.VerifyAll(); - } } } \ No newline at end of file Index: Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Forms/Views/StabilityPointStructuresFailureMechanismSectionResultRow.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Forms/Views/StabilityPointStructuresFailureMechanismSectionResultRow.cs (.../StabilityPointStructuresFailureMechanismSectionResultRow.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/StabilityPointStructures/src/Ringtoets.StabilityPointStructures.Forms/Views/StabilityPointStructuresFailureMechanismSectionResultRow.cs (.../StabilityPointStructuresFailureMechanismSectionResultRow.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -123,9 +123,6 @@ return SectionResult.Calculation; } - public override void Update() - { - throw new NotImplementedException(); - } + public override void Update() {} } } \ No newline at end of file Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Forms.Test/Views/StabilityPointStructuresFailureMechanismSectionResultRowTest.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Forms.Test/Views/StabilityPointStructuresFailureMechanismSectionResultRowTest.cs (.../StabilityPointStructuresFailureMechanismSectionResultRowTest.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Forms.Test/Views/StabilityPointStructuresFailureMechanismSectionResultRowTest.cs (.../StabilityPointStructuresFailureMechanismSectionResultRowTest.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -301,29 +301,5 @@ Assert.AreEqual(assessmentLayerThree, sectionResult.TailorMadeAssessmentProbability); mocks.VerifyAll(); } - - [Test] - public void Update_Always_ThrowsNotImplementedException() - { - // Setup - var failureMechanism = new StabilityPointStructuresFailureMechanism(); - - var mocks = new MockRepository(); - IAssessmentSection assessmentSection = AssessmentSectionHelper.CreateAssessmentSectionStub(failureMechanism, mocks); - mocks.ReplayAll(); - - FailureMechanismSection section = FailureMechanismSectionTestFactory.CreateFailureMechanismSection(); - var result = new StabilityPointStructuresFailureMechanismSectionResult(section); - var row = new StabilityPointStructuresFailureMechanismSectionResultRow(result, - failureMechanism, - assessmentSection); - - // Call - TestDelegate call = () => row.Update(); - - // Assert - Assert.Throws(call); - mocks.VerifyAll(); - } } } \ No newline at end of file Index: Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Forms/Views/StabilityStoneCoverSectionResultRow.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Forms/Views/StabilityStoneCoverSectionResultRow.cs (.../StabilityStoneCoverSectionResultRow.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/StabilityStoneCover/src/Ringtoets.StabilityStoneCover.Forms/Views/StabilityStoneCoverSectionResultRow.cs (.../StabilityStoneCoverSectionResultRow.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -91,9 +91,6 @@ } } - public override void Update() - { - throw new NotImplementedException(); - } + public override void Update() {} } } \ No newline at end of file Index: Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Forms.Test/Views/StabilityStoneCoverSectionResultRowTest.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Forms.Test/Views/StabilityStoneCoverSectionResultRowTest.cs (.../StabilityStoneCoverSectionResultRowTest.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/StabilityStoneCover/test/Ringtoets.StabilityStoneCover.Forms.Test/Views/StabilityStoneCoverSectionResultRowTest.cs (.../StabilityStoneCoverSectionResultRowTest.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -116,20 +116,5 @@ // Assert Assert.AreEqual(newValue, result.AssessmentLayerThree, row.AssessmentLayerThree.GetAccuracy()); } - - [Test] - public void Update_Always_ThrowsNotImplementedException() - { - // Setup - FailureMechanismSection section = FailureMechanismSectionTestFactory.CreateFailureMechanismSection(); - var result = new StabilityStoneCoverFailureMechanismSectionResult(section); - var row = new StabilityStoneCoverSectionResultRow(result); - - // Call - TestDelegate call = () => row.Update(); - - // Assert - Assert.Throws(call); - } } } \ No newline at end of file Index: Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Forms/Views/WaveImpactAsphaltCoverFailureMechanismSectionResultRow.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Forms/Views/WaveImpactAsphaltCoverFailureMechanismSectionResultRow.cs (.../WaveImpactAsphaltCoverFailureMechanismSectionResultRow.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/WaveImpactAsphaltCover/src/Ringtoets.WaveImpactAsphaltCover.Forms/Views/WaveImpactAsphaltCoverFailureMechanismSectionResultRow.cs (.../WaveImpactAsphaltCoverFailureMechanismSectionResultRow.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -43,7 +43,7 @@ /// Thrown when is null. internal WaveImpactAsphaltCoverFailureMechanismSectionResultRow(WaveImpactAsphaltCoverFailureMechanismSectionResult sectionResult) : base(sectionResult) {} - + /// /// Gets or sets the value representing the simple assessment result. /// @@ -91,9 +91,6 @@ } } - public override void Update() - { - throw new NotImplementedException(); - } + public override void Update() {} } } \ No newline at end of file Index: Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Forms.Test/Views/WaveImpactAsphaltCoverFailureMechanismSectionResultRowTest.cs =================================================================== diff -u -rbc3f585dcc4ef814652ff76d2713ffc14fe247cb -r833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1 --- Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Forms.Test/Views/WaveImpactAsphaltCoverFailureMechanismSectionResultRowTest.cs (.../WaveImpactAsphaltCoverFailureMechanismSectionResultRowTest.cs) (revision bc3f585dcc4ef814652ff76d2713ffc14fe247cb) +++ Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Forms.Test/Views/WaveImpactAsphaltCoverFailureMechanismSectionResultRowTest.cs (.../WaveImpactAsphaltCoverFailureMechanismSectionResultRowTest.cs) (revision 833e75c2d3d73d3b7c63ab12d44edaa3cbb09bf1) @@ -118,20 +118,5 @@ // Assert Assert.AreEqual(assessmentLayerThree, sectionResult.AssessmentLayerThree); } - - [Test] - public void Update_Always_ThrowsNotImplementedException() - { - // Setup - FailureMechanismSection section = FailureMechanismSectionTestFactory.CreateFailureMechanismSection(); - var result = new WaveImpactAsphaltCoverFailureMechanismSectionResult(section); - var row = new WaveImpactAsphaltCoverFailureMechanismSectionResultRow(result); - - // Call - TestDelegate call = () => row.Update(); - - // Assert - Assert.Throws(call); - } } } \ No newline at end of file