Index: Ringtoets/Common/test/Ringtoets.Common.Service.TestUtil/CalculationServiceTestHelper.cs
===================================================================
diff -u -ra8bc394180aa765a9faeb140a90e60599e64cf3e -r92210258706d0f57e05552037b676bd941a6fe19
--- Ringtoets/Common/test/Ringtoets.Common.Service.TestUtil/CalculationServiceTestHelper.cs (.../CalculationServiceTestHelper.cs) (revision a8bc394180aa765a9faeb140a90e60599e64cf3e)
+++ Ringtoets/Common/test/Ringtoets.Common.Service.TestUtil/CalculationServiceTestHelper.cs (.../CalculationServiceTestHelper.cs) (revision 92210258706d0f57e05552037b676bd941a6fe19)
@@ -31,41 +31,37 @@
///
/// Asserts that the given message equals the message stating the start of validation.
///
- /// The name of the calculation.
/// The actual message.
- public static void AssertValidationStartMessage(string calculationName, string actualMessage)
+ public static void AssertValidationStartMessage(string actualMessage)
{
- Assert.AreEqual($"Validatie van '{calculationName}' is gestart.", actualMessage);
+ Assert.AreEqual("Validatie is gestart.", actualMessage);
}
///
/// Asserts that the given message equals the message stating the end of validation.
///
- /// The name of the calculation.
/// The actual message.
- public static void AssertValidationEndMessage(string calculationName, string actualMessage)
+ public static void AssertValidationEndMessage(string actualMessage)
{
- Assert.AreEqual($"Validatie van '{calculationName}' is beëindigd.", actualMessage);
+ Assert.AreEqual("Validatie is beëindigd.", actualMessage);
}
///
/// Asserts that the given message equals the message stating the start of calculation.
///
- /// The name of the calculation.
/// The actual message.
- public static void AssertCalculationStartMessage(string calculationName, string actualMessage)
+ public static void AssertCalculationStartMessage(string actualMessage)
{
- Assert.AreEqual($"Berekening van '{calculationName}' is gestart.", actualMessage);
+ Assert.AreEqual("Berekening is gestart.", actualMessage);
}
///
/// Asserts that the given message equals the message stating the end of calculation.
///
- /// The name of the calculation.
/// The actual message.
- public static void AssertCalculationEndMessage(string calculationName, string actualMessage)
+ public static void AssertCalculationEndMessage(string actualMessage)
{
- Assert.AreEqual($"Berekening van '{calculationName}' is beëindigd.", actualMessage);
+ Assert.AreEqual("Berekening is beëindigd.", actualMessage);
}
}
}
\ No newline at end of file