Index: Ringtoets/Integration/test/Ringtoets.Integration.Service.Test/RingtoetsDataSynchronizationServiceTest.cs =================================================================== diff -u -rcf55284bcecdef7b9ef6cbd0d5a00c27870e4f85 -r78cc5b59d47ca61eb812d0c69c7a17a4570e4ddc --- Ringtoets/Integration/test/Ringtoets.Integration.Service.Test/RingtoetsDataSynchronizationServiceTest.cs (.../RingtoetsDataSynchronizationServiceTest.cs) (revision cf55284bcecdef7b9ef6cbd0d5a00c27870e4f85) +++ Ringtoets/Integration/test/Ringtoets.Integration.Service.Test/RingtoetsDataSynchronizationServiceTest.cs (.../RingtoetsDataSynchronizationServiceTest.cs) (revision 78cc5b59d47ca61eb812d0c69c7a17a4570e4ddc) @@ -68,7 +68,7 @@ public void ClearFailureMechanismCalculationOutputs_WithAssessmentSection_ClearsFailureMechanismCalculationsOutputAndReturnsAffectedCalculations() { // Setup - AssessmentSection assessmentSection = TestDataGenerator.GetFullyConfiguredAssessmentSection(); + AssessmentSection assessmentSection = TestDataGenerator.GetAssessmentSectionWithAllCalculationConfigurations(); IEnumerable expectedAffectedItems = assessmentSection.GetFailureMechanisms() .SelectMany(f => f.Calculations) .Where(c => c.HasOutput) @@ -145,7 +145,7 @@ public void ClearAllCalculationOutputAndHydraulicBoundaryLocations_VariousCalculations_ClearsHydraulicBoundaryLocationAndCalculationsAndReturnsAffectedObjects() { // Setup - var assessmentSection = TestDataGenerator.GetFullyConfiguredAssessmentSection(); + var assessmentSection = TestDataGenerator.GetAssessmentSectionWithAllCalculationConfigurations(); var expectedAffectedItems = new List(); expectedAffectedItems.AddRange(assessmentSection.ClosingStructures.Calculations .Cast>() @@ -484,7 +484,7 @@ public void ClearReferenceLine_FullyConfiguredAssessmentSection_AllReferenceLineDependentDataCleared() { // Setup - AssessmentSection assessmentSection = TestDataGenerator.GetFullyConfiguredAssessmentSection(); + AssessmentSection assessmentSection = TestDataGenerator.GetAssessmentSectionWithAllCalculationConfigurations(); // Call RingtoetsDataSynchronizationService.ClearReferenceLine(assessmentSection); @@ -591,7 +591,7 @@ public void ClearReferenceLine_FullyConfiguredAssessmentSection_ClearResultsContainAllAffectedObjectsAndAllRemovedObjects() { // Setup - AssessmentSection assessmentSection = TestDataGenerator.GetFullyConfiguredAssessmentSection(); + AssessmentSection assessmentSection = TestDataGenerator.GetAssessmentSectionWithAllCalculationConfigurations(); IList expectedRemovedObjects = GetExpectedRemovedObjectsWhenClearingReferenceLine(assessmentSection); @@ -686,7 +686,7 @@ public void ClearReferenceLine_FullyConfiguredAssessmentSectionWithoutReferenceLine_ClearResultsDoesNotContainReferenceLineNorNullForRemovedObjects() { // Setup - AssessmentSection assessmentSection = TestDataGenerator.GetFullyConfiguredAssessmentSection(); + AssessmentSection assessmentSection = TestDataGenerator.GetAssessmentSectionWithAllCalculationConfigurations(); ReferenceLine originalReferenceLine = assessmentSection.ReferenceLine; assessmentSection.ReferenceLine = null;