Index: Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Service.Test/WaveImpactAsphaltCoverWaveConditionsCalculationServiceTest.cs =================================================================== diff -u -r80e51fdd446be6524d4f3bcc4175e8d3ae9c86ff -r2ba2957ae849bb05a45cf13f81a8f6464184caef --- Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Service.Test/WaveImpactAsphaltCoverWaveConditionsCalculationServiceTest.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationServiceTest.cs) (revision 80e51fdd446be6524d4f3bcc4175e8d3ae9c86ff) +++ Ringtoets/WaveImpactAsphaltCover/test/Ringtoets.WaveImpactAsphaltCover.Service.Test/WaveImpactAsphaltCoverWaveConditionsCalculationServiceTest.cs (.../WaveImpactAsphaltCoverWaveConditionsCalculationServiceTest.cs) (revision 2ba2957ae849bb05a45cf13f81a8f6464184caef) @@ -310,6 +310,7 @@ StringAssert.StartsWith(string.Format("Berekening van '{0}' beëindigd om: ", calculation.Name), msgs[7]); }); } + mockRepository.VerifyAll(); } [Test] @@ -371,6 +372,7 @@ StringAssert.StartsWith(string.Format("Berekening van '{0}' beëindigd om: ", calculation.Name), msgs[7]); }); } + mockRepository.VerifyAll(); } [Test] @@ -422,6 +424,7 @@ HydraRingDataEqualityHelper.AreEqual(expectedInput, actualInput); } } + mockRepository.VerifyAll(); } [Test] @@ -508,6 +511,7 @@ Assert.IsNotNull(calculation.Output); Assert.AreEqual(3, calculation.Output.Items.Count()); } + mockRepository.VerifyAll(); } [Test] @@ -568,8 +572,9 @@ StringAssert.StartsWith(string.Format("Berekening van '{0}' beëindigd om: ", calculation.Name), msgs[5]); }); Assert.IsTrue(exception); - mockRepository.VerifyAll(); + Assert.IsNull(calculation.Output); } + mockRepository.VerifyAll(); } [Test] @@ -630,8 +635,9 @@ StringAssert.StartsWith(string.Format("Berekening van '{0}' beëindigd om: ", calculation.Name), msgs[5]); }); Assert.IsTrue(exception); - mockRepository.VerifyAll(); + Assert.IsNull(calculation.Output); } + mockRepository.VerifyAll(); } [Test] @@ -696,8 +702,9 @@ }); Assert.IsTrue(exception); Assert.AreEqual(calculator.LastErrorFileContent, exceptionMessage); - mockRepository.VerifyAll(); + Assert.IsNull(calculation.Output); } + mockRepository.VerifyAll(); } [Test]