Index: Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/FailureMechanismContributionViewIntegrationTest.cs =================================================================== diff -u -rce190360da30edf73fb464cc0fea1d9a795aa5d4 -rab20c4eb4ca81bd3845d50210d2bdb301177af6a --- Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/FailureMechanismContributionViewIntegrationTest.cs (.../FailureMechanismContributionViewIntegrationTest.cs) (revision ce190360da30edf73fb464cc0fea1d9a795aa5d4) +++ Ringtoets/Integration/test/Ringtoets.Integration.Forms.Test/FailureMechanismContributionViewIntegrationTest.cs (.../FailureMechanismContributionViewIntegrationTest.cs) (revision ab20c4eb4ca81bd3845d50210d2bdb301177af6a) @@ -31,6 +31,7 @@ using Ringtoets.Common.Data.AssessmentSection; using Ringtoets.Common.Data.Contribution; using Ringtoets.Common.Data.Probability; +using Ringtoets.Common.Data.Structures; using Ringtoets.Common.Data.TestUtil; using Ringtoets.GrassCoverErosionInwards.Data; using Ringtoets.HeightStructures.Data; @@ -91,8 +92,8 @@ { Output = new GrassCoverErosionInwardsOutput(0, false, new ProbabilityAssessmentOutput(0, 0, 0, 0, 0), 0) }; - var emptyHeightStructuresCalculation = new HeightStructuresCalculation(); - var heightStructuresCalculation = new HeightStructuresCalculation + var emptyHeightStructuresCalculation = new StructuresCalculation(); + var heightStructuresCalculation = new StructuresCalculation { Output = new ProbabilityAssessmentOutput(0, 0, 0, 0, 0) }; @@ -203,7 +204,7 @@ PipingCalculation emptyPipingCalculation = new PipingCalculation(new GeneralPipingInput()); GrassCoverErosionInwardsCalculation emptyGrassCoverErosionInwardsCalculation = new GrassCoverErosionInwardsCalculation(); - HeightStructuresCalculation emptyHeightStructuresCalculation = new HeightStructuresCalculation(); + var emptyHeightStructuresCalculation = new StructuresCalculation(); assessmentSection.PipingFailureMechanism.CalculationsGroup.Children.Add(emptyPipingCalculation); assessmentSection.GrassCoverErosionInwards.CalculationsGroup.Children.Add(emptyGrassCoverErosionInwardsCalculation); @@ -282,8 +283,8 @@ { Output = new GrassCoverErosionInwardsOutput(0, false, new ProbabilityAssessmentOutput(0, 0, 0, 0, 0), 0) }; - HeightStructuresCalculation emptyHeightStructuresCalculation = new HeightStructuresCalculation(); - HeightStructuresCalculation heightStructuresCalculation = new HeightStructuresCalculation + var emptyHeightStructuresCalculation = new StructuresCalculation(); + var heightStructuresCalculation = new StructuresCalculation { Output = new ProbabilityAssessmentOutput(0, 0, 0, 0, 0) }; @@ -369,8 +370,8 @@ { Output = new GrassCoverErosionInwardsOutput(0, false, new ProbabilityAssessmentOutput(0, 0, 0, 0, 0), 0) }; - HeightStructuresCalculation emptyHeightStructuresCalculation = new HeightStructuresCalculation(); - HeightStructuresCalculation heightStructuresCalculation = new HeightStructuresCalculation + var emptyHeightStructuresCalculation = new StructuresCalculation(); + var heightStructuresCalculation = new StructuresCalculation { Output = new ProbabilityAssessmentOutput(0, 0, 0, 0, 0) }; @@ -451,7 +452,7 @@ PipingCalculation emptyPipingCalculation = new PipingCalculation(new GeneralPipingInput()); GrassCoverErosionInwardsCalculation emptyGrassCoverErosionInwardsCalculation = new GrassCoverErosionInwardsCalculation(); - HeightStructuresCalculation emptyHeightStructuresCalculation = new HeightStructuresCalculation(); + var emptyHeightStructuresCalculation = new StructuresCalculation(); assessmentSection.PipingFailureMechanism.CalculationsGroup.Children.Add(emptyPipingCalculation); assessmentSection.GrassCoverErosionInwards.CalculationsGroup.Children.Add(emptyGrassCoverErosionInwardsCalculation); @@ -507,7 +508,7 @@ PipingCalculation emptyPipingCalculation = new PipingCalculation(new GeneralPipingInput()); GrassCoverErosionInwardsCalculation emptyGrassCoverErosionInwardsCalculation = new GrassCoverErosionInwardsCalculation(); - HeightStructuresCalculation emptyHeightStructuresCalculation = new HeightStructuresCalculation(); + var emptyHeightStructuresCalculation = new StructuresCalculation(); assessmentSection.PipingFailureMechanism.CalculationsGroup.Children.Add(emptyPipingCalculation); assessmentSection.GrassCoverErosionInwards.CalculationsGroup.Children.Add(emptyGrassCoverErosionInwardsCalculation);