Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Service.Test/HeightStructuresDataSynchronizationServiceTest.cs =================================================================== diff -u -r183d1e7ed095ea4e8024068bc4ddfcf3ac6997d3 -rf1fa2338dda2747f6bb70e82b4527f7b5f1708bf --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Service.Test/HeightStructuresDataSynchronizationServiceTest.cs (.../HeightStructuresDataSynchronizationServiceTest.cs) (revision 183d1e7ed095ea4e8024068bc4ddfcf3ac6997d3) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Service.Test/HeightStructuresDataSynchronizationServiceTest.cs (.../HeightStructuresDataSynchronizationServiceTest.cs) (revision f1fa2338dda2747f6bb70e82b4527f7b5f1708bf) @@ -97,61 +97,6 @@ } [Test] - public void ClearHydraulicBoundaryLocations_FailureMechanismNull_ThrowsArgumentNullException() - { - // Call - TestDelegate call = () => HeightStructuresDataSynchronizationService.ClearHydraulicBoundaryLocations(null); - - // Assert - var exception = Assert.Throws(call); - Assert.AreEqual("failureMechanism", exception.ParamName); - } - - [Test] - public void ClearHydraulicBoundaryLocations_WithHydraulicBoundaryLocation_ClearsHydraulicBoundaryLocationAndReturnsAffectedCalculations() - { - // Setup - var failureMechanism = new HeightStructuresFailureMechanism(); - 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 = HeightStructuresDataSynchronizationService.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