Index: Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/StructuresCalculationCreateExtensionsTest.cs =================================================================== diff -u -r893c37884e74d551780cfd9cb4b9899779832650 -r889e8e4ee8267b316e00e8f8a1035c60afb200a0 --- Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/StructuresCalculationCreateExtensionsTest.cs (.../StructuresCalculationCreateExtensionsTest.cs) (revision 893c37884e74d551780cfd9cb4b9899779832650) +++ Application/Ringtoets/test/Application.Ringtoets.Storage.Test/Create/StructuresCalculationCreateExtensionsTest.cs (.../StructuresCalculationCreateExtensionsTest.cs) (revision 889e8e4ee8267b316e00e8f8a1035c60afb200a0) @@ -45,13 +45,13 @@ [TestFixture] public class StructuresCalculationCreateExtensionsTest { - private static StructuresOutput GetStructuresOutputWithIllustrationPoints() + private static StructuresOutput GetStructuresOutputWithGeneralResult() { var structuresOutput = new StructuresOutput( new ProbabilityAssessmentOutput(double.NaN, double.NaN, double.NaN, double.NaN, double.NaN)); - structuresOutput.SetIllustrationPoints(new GeneralResult( + structuresOutput.SetGeneralResult(new GeneralResult( WindDirectionTestFactory.CreateTestWindDirection(), Enumerable.Empty(), Enumerable.Empty())); @@ -362,12 +362,12 @@ } [Test] - public void CreateForHeightStructures_CalculationWithOutputAndIllustrationPoints_ReturnEntityWithOutputAndIllustrationPoints() + public void CreateForHeightStructures_CalculationWithOutputAndGeneralResult_ReturnEntityWithOutputAndIllustrationPoints() { // Setup var calculation = new StructuresCalculation { - Output = GetStructuresOutputWithIllustrationPoints() + Output = GetStructuresOutputWithGeneralResult() }; var registry = new PersistenceRegistry(); @@ -743,12 +743,12 @@ } [Test] - public void CreateForClosingStructures_CalculationWithOutputAndIllustrationPoints_ReturnEntityWithOutputAndIllustrationPoints() + public void CreateForClosingStructures_CalculationWithOutputAndGeneralResult_ReturnEntityWithOutputAndIllustrationPoints() { // Setup var calculation = new StructuresCalculation { - Output = GetStructuresOutputWithIllustrationPoints() + Output = GetStructuresOutputWithGeneralResult() }; var registry = new PersistenceRegistry(); @@ -1273,12 +1273,12 @@ } [Test] - public void CreateForStabilityPointStructures_CalculationWithOutputAndIllustrationPoints_ReturnEntityWithOutputAndIllustrationPoints() + public void CreateForStabilityPointStructures_CalculationWithOutputAndGeneralResult_ReturnEntityWithOutputAndIllustrationPoints() { // Setup var calculation = new StructuresCalculation { - Output = GetStructuresOutputWithIllustrationPoints() + Output = GetStructuresOutputWithGeneralResult() }; var registry = new PersistenceRegistry();