Index: Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Service.Test/StabilityPointStructuresDataSynchronizationServiceTest.cs =================================================================== diff -u -ra509105c5c59970335764d52fab113e0e3a1e115 -rf1fa2338dda2747f6bb70e82b4527f7b5f1708bf --- Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Service.Test/StabilityPointStructuresDataSynchronizationServiceTest.cs (.../StabilityPointStructuresDataSynchronizationServiceTest.cs) (revision a509105c5c59970335764d52fab113e0e3a1e115) +++ Ringtoets/StabilityPointStructures/test/Ringtoets.StabilityPointStructures.Service.Test/StabilityPointStructuresDataSynchronizationServiceTest.cs (.../StabilityPointStructuresDataSynchronizationServiceTest.cs) (revision f1fa2338dda2747f6bb70e82b4527f7b5f1708bf) @@ -97,61 +97,6 @@ } [Test] - public void ClearHydraulicBoundaryLocations_FailureMechanismNull_ThrowsArgumentNullException() - { - // Call - TestDelegate call = () => StabilityPointStructuresDataSynchronizationService.ClearHydraulicBoundaryLocations(null); - - // Assert - var exception = Assert.Throws(call); - Assert.AreEqual("failureMechanism", exception.ParamName); - } - - [Test] - public void ClearHydraulicBoundaryLocations_WithHydraulicBoundaryLocation_ClearsHydraulicBoundaryLocationAndReturnsAffectedCalculations() - { - // Setup - var failureMechanism = new StabilityPointStructuresFailureMechanism(); - var hydraulicBoundaryLocation = new HydraulicBoundaryLocation(1, string.Empty, 0, 0); - - var calculation1 = new StructuresCalculation - { - InputParameters = - { - HydraulicBoundaryLocation = hydraulicBoundaryLocation - } - }; - - var calculation2 = new StructuresCalculation - { - InputParameters = - { - HydraulicBoundaryLocation = hydraulicBoundaryLocation - } - }; - - var calculation3 = new StructuresCalculation(); - - failureMechanism.CalculationsGroup.Children.Add(calculation1); - failureMechanism.CalculationsGroup.Children.Add(calculation2); - failureMechanism.CalculationsGroup.Children.Add(calculation3); - - // Call - IEnumerable> affectedItems = StabilityPointStructuresDataSynchronizationService.ClearHydraulicBoundaryLocations(failureMechanism); - - // Assert - foreach (StructuresCalculation calculation in failureMechanism.CalculationsGroup.Children.Cast>()) - { - Assert.IsNull(calculation.InputParameters.HydraulicBoundaryLocation); - } - CollectionAssert.AreEqual(new[] - { - calculation1, - calculation2 - }, affectedItems); - } - - [Test] public void ClearAllCalculationOutputAndHydraulicBoundaryLocations_WithoutFailureMechanism_ThrowsArgumentNullException() { // Call