Index: Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/Assembly/AssessmentSectionHelperTest.cs =================================================================== diff -u -rd152836a2a6cc65a9b29894ea0157255702cb127 -rb7601e550677dc213b311a1dd7fb9c8c46768970 --- Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/Assembly/AssessmentSectionHelperTest.cs (.../AssessmentSectionHelperTest.cs) (revision d152836a2a6cc65a9b29894ea0157255702cb127) +++ Ringtoets/Integration/test/Ringtoets.Integration.Data.Test/Assembly/AssessmentSectionHelperTest.cs (.../AssessmentSectionHelperTest.cs) (revision b7601e550677dc213b311a1dd7fb9c8c46768970) @@ -80,80 +80,26 @@ private static IEnumerable GetHasManualAssemblyResultCases() { - var getPipingFunc = new Func>( - assessmentSection => assessmentSection.Piping); - - var getMacroStabilityInwardsFunc = new Func>( - assessmentSection => assessmentSection.MacroStabilityInwards); - - var getGrassCoverErosionInwardsFunc = new Func>( - assessmentSection => assessmentSection.GrassCoverErosionInwards); - - var getClosingStructuresFunc = new Func>( - assessmentSection => assessmentSection.ClosingStructures); - - var getHeightStructuresFunc = new Func>( - assessmentSection => assessmentSection.HeightStructures); - - var getStabilityPointStructuresFunc = new Func>( - assessmentSection => assessmentSection.StabilityPointStructures); - - var getGrassCoverErosionOutwardsFunc = new Func>( - assessmentSection => assessmentSection.GrassCoverErosionOutwards); - - var getDuneErosionFunc = new Func>( - assessmentSection => assessmentSection.DuneErosion); - - var getWaveImpactAsphaltCoverFunc = new Func>( - assessmentSection => assessmentSection.WaveImpactAsphaltCover); - - var getStabilityStoneCoverFunc = new Func>( - assessmentSection => assessmentSection.StabilityStoneCover); - - var getGrassCoverSlipOffInwardsFunc = new Func>( - assessmentSection => assessmentSection.GrassCoverSlipOffInwards); - - var getGrassCoverSlipOffOutwardsFunc = new Func>( - assessmentSection => assessmentSection.GrassCoverSlipOffOutwards); - - var getMacroStabilityOutwardsFunc = new Func>( - assessmentSection => assessmentSection.MacroStabilityOutwards); - - var getMicrostabilityFunc = new Func>( - assessmentSection => assessmentSection.Microstability); - - var getPipingStructureFunc = new Func>( - assessmentSection => assessmentSection.PipingStructure); - - var getStrengthStabilityLengthwiseConstructionFunc = new Func>( - assessmentSection => assessmentSection.StrengthStabilityLengthwiseConstruction); - - var getTechnicalInnovationFunc = new Func>( - assessmentSection => assessmentSection.TechnicalInnovation); - - var getWaterPressureAsphaltCoverFunc = new Func>( - assessmentSection => assessmentSection.WaterPressureAsphaltCover); - Func>[] getFailureMechanismFuncs = { - getPipingFunc, - getMacroStabilityInwardsFunc, - getGrassCoverErosionInwardsFunc, - getClosingStructuresFunc, - getHeightStructuresFunc, - getStabilityPointStructuresFunc, - getGrassCoverErosionOutwardsFunc, - getDuneErosionFunc, - getWaveImpactAsphaltCoverFunc, - getStabilityStoneCoverFunc, - getGrassCoverSlipOffInwardsFunc, - getGrassCoverSlipOffOutwardsFunc, - getMacroStabilityOutwardsFunc, - getMicrostabilityFunc, - getPipingStructureFunc, - getStrengthStabilityLengthwiseConstructionFunc, - getTechnicalInnovationFunc, - getWaterPressureAsphaltCoverFunc + assessmentSection => assessmentSection.Piping, + assessmentSection => assessmentSection.MacroStabilityInwards, + assessmentSection => assessmentSection.GrassCoverErosionInwards, + assessmentSection => assessmentSection.ClosingStructures, + assessmentSection => assessmentSection.HeightStructures, + assessmentSection => assessmentSection.StabilityPointStructures, + assessmentSection => assessmentSection.GrassCoverErosionOutwards, + assessmentSection => assessmentSection.DuneErosion, + assessmentSection => assessmentSection.WaveImpactAsphaltCover, + assessmentSection => assessmentSection.StabilityStoneCover, + assessmentSection => assessmentSection.GrassCoverSlipOffInwards, + assessmentSection => assessmentSection.GrassCoverSlipOffOutwards, + assessmentSection => assessmentSection.MacroStabilityOutwards, + assessmentSection => assessmentSection.Microstability, + assessmentSection => assessmentSection.PipingStructure, + assessmentSection => assessmentSection.StrengthStabilityLengthwiseConstruction, + assessmentSection => assessmentSection.TechnicalInnovation, + assessmentSection => assessmentSection.WaterPressureAsphaltCover }; foreach (Func> func in getFailureMechanismFuncs)