Index: Ringtoets/Common/test/Ringtoets.Common.Service.Test/WaveHeightCalculationActivityTest.cs =================================================================== diff -u -r248229db928c9e5556be704ed274226f80b4ef19 -ra08664f5b196db59fc81cbbd33672627060d38c0 --- Ringtoets/Common/test/Ringtoets.Common.Service.Test/WaveHeightCalculationActivityTest.cs (.../WaveHeightCalculationActivityTest.cs) (revision 248229db928c9e5556be704ed274226f80b4ef19) +++ Ringtoets/Common/test/Ringtoets.Common.Service.Test/WaveHeightCalculationActivityTest.cs (.../WaveHeightCalculationActivityTest.cs) (revision a08664f5b196db59fc81cbbd33672627060d38c0) @@ -154,6 +154,8 @@ const string locationName = "locationName"; const string activityName = "GetActivityName"; const string calculationName = "locationName"; + const string ringId = "11-1"; + const double norm = 30; var hydraulicBoundaryLocationMock = mockRepository.Stub(); hydraulicBoundaryLocationMock.Expect(hbl => hbl.Name).Return(locationName).Repeat.AtLeastOnce(); @@ -166,7 +168,9 @@ var activity = new WaveHeightCalculationActivity(calculationMessageProviderMock, hydraulicBoundaryLocationMock, - validFilePath, "", 30); + validFilePath, + ringId, + norm); using (new WaveHeightCalculationServiceConfig()) { @@ -177,6 +181,10 @@ // Assert Assert.AreSame(calculationMessageProviderMock, testService.MessageProvider); + Assert.AreSame(hydraulicBoundaryLocationMock, testService.HydraulicBoundaryLocation); + Assert.AreEqual(validFilePath, testService.HydraulicBoundaryDatabaseFilePath); + Assert.AreEqual(ringId, testService.RingId); + Assert.AreEqual(norm, testService.Norm); } Assert.AreEqual(ActivityState.Executed, activity.State); mockRepository.VerifyAll();