Index: Ringtoets/DuneErosion/test/Ringtoets.DuneErosion.Plugin.Test/TreeNodeInfos/DuneLocationsContextTreeNodeInfoTest.cs =================================================================== diff -u -re93f3cb97066cae85be4a977098261d47ba6eb57 -rfae525350cc755ecc783bd4ac3fc13aed2e4ccaa --- Ringtoets/DuneErosion/test/Ringtoets.DuneErosion.Plugin.Test/TreeNodeInfos/DuneLocationsContextTreeNodeInfoTest.cs (.../DuneLocationsContextTreeNodeInfoTest.cs) (revision e93f3cb97066cae85be4a977098261d47ba6eb57) +++ Ringtoets/DuneErosion/test/Ringtoets.DuneErosion.Plugin.Test/TreeNodeInfos/DuneLocationsContextTreeNodeInfoTest.cs (.../DuneLocationsContextTreeNodeInfoTest.cs) (revision fae525350cc755ecc783bd4ac3fc13aed2e4ccaa) @@ -451,25 +451,27 @@ List messageList = messages.ToList(); // Assert - Assert.AreEqual(14, messageList.Count); + Assert.AreEqual(16, messageList.Count); const string calculationNameA = "Hydraulische belasting berekenen voor locatie 'A'"; - CalculationServiceTestHelper.AssertValidationStartMessage(calculationNameA, messageList[0]); - CalculationServiceTestHelper.AssertValidationEndMessage(calculationNameA, messageList[1]); - CalculationServiceTestHelper.AssertCalculationStartMessage(calculationNameA, messageList[2]); - Assert.AreEqual("Hydraulische randvoorwaarden berekening voor locatie 'A' is niet geconvergeerd.", messageList[3]); - StringAssert.StartsWith("Hydraulische randvoorwaarden berekening is uitgevoerd op de tijdelijke locatie", messageList[4]); - CalculationServiceTestHelper.AssertCalculationEndMessage(calculationNameA, messageList[5]); + Assert.AreEqual($"Hydraulische randvoorwaarden berekenen voor locatie 'A' is gestart.", messageList[0]); + CalculationServiceTestHelper.AssertValidationStartMessage(calculationNameA, messageList[1]); + CalculationServiceTestHelper.AssertValidationEndMessage(calculationNameA, messageList[2]); + CalculationServiceTestHelper.AssertCalculationStartMessage(calculationNameA, messageList[3]); + Assert.AreEqual("Hydraulische randvoorwaarden berekening voor locatie 'A' is niet geconvergeerd.", messageList[4]); + StringAssert.StartsWith("Hydraulische randvoorwaarden berekening is uitgevoerd op de tijdelijke locatie", messageList[5]); + CalculationServiceTestHelper.AssertCalculationEndMessage(calculationNameA, messageList[6]); const string calculationNameB = "Hydraulische belasting berekenen voor locatie 'B'"; - CalculationServiceTestHelper.AssertValidationStartMessage(calculationNameB, messageList[6]); - CalculationServiceTestHelper.AssertValidationEndMessage(calculationNameB, messageList[7]); - CalculationServiceTestHelper.AssertCalculationStartMessage(calculationNameB, messageList[8]); - Assert.AreEqual("Hydraulische randvoorwaarden berekening voor locatie 'B' is niet geconvergeerd.", messageList[9]); - StringAssert.StartsWith("Hydraulische randvoorwaarden berekening is uitgevoerd op de tijdelijke locatie", messageList[10]); - CalculationServiceTestHelper.AssertCalculationEndMessage(calculationNameB, messageList[11]); + Assert.AreEqual($"Hydraulische randvoorwaarden berekenen voor locatie 'B' is gestart.", messageList[7]); + CalculationServiceTestHelper.AssertValidationStartMessage(calculationNameB, messageList[8]); + CalculationServiceTestHelper.AssertValidationEndMessage(calculationNameB, messageList[9]); + CalculationServiceTestHelper.AssertCalculationStartMessage(calculationNameB, messageList[10]); + Assert.AreEqual("Hydraulische randvoorwaarden berekening voor locatie 'B' is niet geconvergeerd.", messageList[11]); + StringAssert.StartsWith("Hydraulische randvoorwaarden berekening is uitgevoerd op de tijdelijke locatie", messageList[12]); + CalculationServiceTestHelper.AssertCalculationEndMessage(calculationNameB, messageList[13]); - Assert.AreEqual("Hydraulische randvoorwaarden berekenen voor locatie 'A' is gelukt.", messageList[12]); - Assert.AreEqual("Hydraulische randvoorwaarden berekenen voor locatie 'B' is gelukt.", messageList[13]); + Assert.AreEqual("Hydraulische randvoorwaarden berekenen voor locatie 'A' is gelukt.", messageList[14]); + Assert.AreEqual("Hydraulische randvoorwaarden berekenen voor locatie 'B' is gelukt.", messageList[15]); }); } }