Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRow/DuneErosionSectionResultRowTest.cs =================================================================== diff -u -r08a279166007321b0ae0f2f15a2f13c191952e1b -rd95c2ebbb1133aca06ee1acf68276fa1325247fb --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRow/DuneErosionSectionResultRowTest.cs (.../DuneErosionSectionResultRowTest.cs) (revision 08a279166007321b0ae0f2f15a2f13c191952e1b) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/Views/SectionResultRow/DuneErosionSectionResultRowTest.cs (.../DuneErosionSectionResultRowTest.cs) (revision d95c2ebbb1133aca06ee1acf68276fa1325247fb) @@ -20,7 +20,6 @@ // All rights reserved. using System; -using Core.Common.Base; using Core.Common.Base.Data; using Core.Common.Base.Geometry; using NUnit.Framework; @@ -57,37 +56,11 @@ // Assert Assert.AreEqual(section.Name, row.Name); - Assert.AreEqual(result.AssessmentLayerOne, row.AssessmentLayerOne); Assert.AreEqual(result.AssessmentLayerTwoA, row.AssessmentLayerTwoA); Assert.AreEqual(result.AssessmentLayerThree, row.AssessmentLayerThree); } [Test] - [TestCase(true)] - [TestCase(false)] - public void AssessmentLayerOne_AlwaysOnChange_NotifyObserversOfResultAndResultPropertyChanged(bool newValue) - { - // Setup - var section = CreateSection(); - var result = new DuneErosionFailureMechanismSectionResult(section); - var row = new DuneErosionSectionResultRow(result); - - int counter = 0; - using (new Observer(() => counter++) - { - Observable = result - }) - { - // Call - row.AssessmentLayerOne = newValue; - - // Assert - Assert.AreEqual(1, counter); - Assert.AreEqual(newValue, result.AssessmentLayerOne); - } - } - - [Test] public void AssessmentLayerTwoA_AlwaysOnChange_ResultPropertyChanged() { // Setup