Index: Ringtoets/Common/test/Ringtoets.Common.Service.Test/DesignWaterLevelCalculationServiceTest.cs =================================================================== diff -u -r058c36d676ce75456e648d75e460c24f0bc06ae7 -r889e8e4ee8267b316e00e8f8a1035c60afb200a0 --- Ringtoets/Common/test/Ringtoets.Common.Service.Test/DesignWaterLevelCalculationServiceTest.cs (.../DesignWaterLevelCalculationServiceTest.cs) (revision 058c36d676ce75456e648d75e460c24f0bc06ae7) +++ Ringtoets/Common/test/Ringtoets.Common.Service.Test/DesignWaterLevelCalculationServiceTest.cs (.../DesignWaterLevelCalculationServiceTest.cs) (revision 889e8e4ee8267b316e00e8f8a1035c60afb200a0) @@ -176,7 +176,7 @@ AssertInput(expectedInput, calculator.ReceivedInputs.Single()); Assert.IsFalse(calculator.IsCanceled); - Assert.AreEqual(calculateIllustrationPoints, calculation.Output.HasIllustrationPoints); + Assert.AreEqual(calculateIllustrationPoints, calculation.Output.HasGeneralResult); } mockRepository.VerifyAll(); } @@ -235,7 +235,7 @@ AssertInput(expectedInput, calculator.ReceivedInputs.Single()); Assert.IsFalse(calculator.IsCanceled); Assert.IsNotNull(calculation.Output); - Assert.AreEqual(readIllustrationPoints, calculation.Output.HasIllustrationPoints); + Assert.AreEqual(readIllustrationPoints, calculation.Output.HasGeneralResult); } mockRepository.VerifyAll(); } @@ -289,7 +289,7 @@ Assert.IsInstanceOf(tupleArray[1].Item3); }); Assert.IsNotNull(calculation.Output); - Assert.IsFalse(calculation.Output.HasIllustrationPoints); + Assert.IsFalse(calculation.Output.HasGeneralResult); } mockRepository.VerifyAll(); } @@ -381,7 +381,7 @@ "Gedetailleerde invoer en uitvoer kan in de bestanden op deze locatie worden gevonden.", msgs[2]); CalculationServiceTestHelper.AssertCalculationEndMessage(msgs[3]); }); - Assert.IsFalse(calculation.Output.HasIllustrationPoints); + Assert.IsFalse(calculation.Output.HasGeneralResult); } mockRepository.VerifyAll(); }