Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresFailureMechanismSectionResultTest.cs =================================================================== diff -u -rab20c4eb4ca81bd3845d50210d2bdb301177af6a -re4e785f127ce9a2d0d1734c1b51e02d910a31bbe --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresFailureMechanismSectionResultTest.cs (.../HeightStructuresFailureMechanismSectionResultTest.cs) (revision ab20c4eb4ca81bd3845d50210d2bdb301177af6a) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Data.Test/HeightStructuresFailureMechanismSectionResultTest.cs (.../HeightStructuresFailureMechanismSectionResultTest.cs) (revision e4e785f127ce9a2d0d1734c1b51e02d910a31bbe) @@ -43,30 +43,11 @@ var sectionResult = new HeightStructuresFailureMechanismSectionResult(section); // Assert - Assert.IsInstanceOf(sectionResult); - Assert.AreSame(section, sectionResult.Section); + Assert.IsInstanceOf>(sectionResult); Assert.IsNaN(sectionResult.AssessmentLayerTwoA); - Assert.IsNull(sectionResult.Calculation); } [Test] - public void Calculation_SetNewValue_GetNewlySetValue() - { - // Setup - FailureMechanismSection section = CreateSection(); - - var result = new HeightStructuresFailureMechanismSectionResult(section); - - var calculation = new StructuresCalculation(); - - // Call - result.Calculation = calculation; - - // Assert - Assert.AreSame(calculation, result.Calculation); - } - - [Test] public void AssessmentLayerTwoA_CalculationNull_ReturnNaN() { // Setup