Index: Ringtoets/Common/test/Ringtoets.Common.Service.Test/DesignWaterLevelCalculationActivityTest.cs =================================================================== diff -u -ra494bde768f1b989d31bff6a801a1816d6f9692e -r68afd12dbc0503fc7a0cfa0af6ebd8fd3bc53cb9 --- Ringtoets/Common/test/Ringtoets.Common.Service.Test/DesignWaterLevelCalculationActivityTest.cs (.../DesignWaterLevelCalculationActivityTest.cs) (revision a494bde768f1b989d31bff6a801a1816d6f9692e) +++ Ringtoets/Common/test/Ringtoets.Common.Service.Test/DesignWaterLevelCalculationActivityTest.cs (.../DesignWaterLevelCalculationActivityTest.cs) (revision 68afd12dbc0503fc7a0cfa0af6ebd8fd3bc53cb9) @@ -274,40 +274,6 @@ } [Test] - public void Run_OutputSet_ValidationAndCalculationNotPerformedAndStateSkipped() - { - // Setup - const string locationName = "locationName"; - const double norm = 1.0 / 30; - - var calculationMessageProvider = mockRepository.Stub(); - calculationMessageProvider.Stub(calc => calc.GetActivityDescription(locationName)).Return(string.Empty); - mockRepository.ReplayAll(); - - var hydraulicBoundaryLocationCalculation = new HydraulicBoundaryLocationCalculation(new TestHydraulicBoundaryLocation(locationName)) - { - InputParameters = - { - ShouldIllustrationPointsBeCalculated = false - }, - Output = new TestHydraulicBoundaryLocationCalculationOutput(3.0, CalculationConvergence.CalculatedConverged) - }; - - var activity = new DesignWaterLevelCalculationActivity(hydraulicBoundaryLocationCalculation, - validFilePath, - validPreprocessorDirectory, - norm, - calculationMessageProvider); - - // Call - activity.Run(); - - // Assert - Assert.AreEqual(ActivityState.Skipped, activity.State); - mockRepository.VerifyAll(); - } - - [Test] [TestCaseSource(nameof(HydraulicBoundaryLocationCalculationsToPerform))] public void Run_ValidCalculationAndRun_SetsDesignWaterLevelAndConvergence(HydraulicBoundaryLocationCalculation hydraulicBoundaryLocationCalculation) {