Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresFailureMechanismSectionResultTest.cs =================================================================== diff -u -ra61d9a646a09ddee65775c179bba12c40003cf84 -r4d2271ee60b40225ccfeb4a8eadc40c7e0fae357 --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresFailureMechanismSectionResultTest.cs (.../HeightStructuresFailureMechanismSectionResultTest.cs) (revision a61d9a646a09ddee65775c179bba12c40003cf84) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresFailureMechanismSectionResultTest.cs (.../HeightStructuresFailureMechanismSectionResultTest.cs) (revision 4d2271ee60b40225ccfeb4a8eadc40c7e0fae357) @@ -43,6 +43,9 @@ Assert.IsInstanceOf(sectionResult); Assert.AreSame(section, sectionResult.Section); Assert.IsFalse(sectionResult.AssessmentLayerOne); + Assert.AreEqual(0, sectionResult.AssessmentLayerTwoA.Value); + Assert.AreEqual(0, sectionResult.AssessmentLayerTwoB.Value); + Assert.AreEqual(0, sectionResult.AssessmentLayerThree.Value); } [Test] @@ -75,24 +78,6 @@ [Test] [TestCase(2.3)] [TestCase(24.6)] - public void AssessmentLayerTwoA_Always_ReturnsSetValue(double newValue) - { - // Setup - FailureMechanismSection section = CreateSection(); - var failureMechanismSectionResult = new HeightStructuresFailureMechanismSectionResult(section); - - RoundedDouble assessmentLayerTwoA = (RoundedDouble)newValue; - - // Call - failureMechanismSectionResult.AssessmentLayerTwoA = assessmentLayerTwoA; - - // Assert - Assert.AreEqual(assessmentLayerTwoA, failureMechanismSectionResult.AssessmentLayerTwoA); - } - - [Test] - [TestCase(2.3)] - [TestCase(24.6)] public void AssessmentLayerTwoB_Always_ReturnsSetValue(double newValue) { // Setup