Index: Ringtoets/Piping/test/Ringtoets.Piping.Plugin.Test/TreeNodeInfos/PipingCalculationScenarioContextTreeNodeInfoTest.cs =================================================================== diff -u -ra8bc394180aa765a9faeb140a90e60599e64cf3e -rfae525350cc755ecc783bd4ac3fc13aed2e4ccaa --- Ringtoets/Piping/test/Ringtoets.Piping.Plugin.Test/TreeNodeInfos/PipingCalculationScenarioContextTreeNodeInfoTest.cs (.../PipingCalculationScenarioContextTreeNodeInfoTest.cs) (revision a8bc394180aa765a9faeb140a90e60599e64cf3e) +++ Ringtoets/Piping/test/Ringtoets.Piping.Plugin.Test/TreeNodeInfos/PipingCalculationScenarioContextTreeNodeInfoTest.cs (.../PipingCalculationScenarioContextTreeNodeInfoTest.cs) (revision fae525350cc755ecc783bd4ac3fc13aed2e4ccaa) @@ -850,14 +850,18 @@ { IEnumerator msgs = messages.GetEnumerator(); Assert.IsTrue(msgs.MoveNext()); - Assert.AreEqual("Validatie van 'Nieuwe berekening' is gestart.", msgs.Current); + Assert.AreEqual($"Uitvoeren van berekening '{calculation.Name}' is gestart.", msgs.Current); + Assert.IsTrue(msgs.MoveNext()); + Assert.AreEqual($"Validatie van '{calculation.Name}' is gestart.", msgs.Current); for (var i = 0; i < expectedValidationMessageCount; i++) { Assert.IsTrue(msgs.MoveNext()); StringAssert.StartsWith("Validatie mislukt: ", msgs.Current); } Assert.IsTrue(msgs.MoveNext()); - Assert.AreEqual("Validatie van 'Nieuwe berekening' is beëindigd.", msgs.Current); + Assert.AreEqual($"Validatie van '{calculation.Name}' is beëindigd.", msgs.Current); + Assert.IsTrue(msgs.MoveNext()); + Assert.AreEqual($"Uitvoeren van berekening '{calculation.Name}' is mislukt.", msgs.Current); }); Assert.IsNull(calculation.Output); Assert.IsNull(calculation.SemiProbabilisticOutput); @@ -958,14 +962,17 @@ { IEnumerator msgs = messages.GetEnumerator(); Assert.IsTrue(msgs.MoveNext()); - Assert.AreEqual("Validatie van 'Nieuwe berekening' is gestart.", msgs.Current); + Assert.AreEqual($"Uitvoeren van berekening '{calculation.Name}' is gestart.", msgs.Current); Assert.IsTrue(msgs.MoveNext()); - Assert.AreEqual("Validatie van 'Nieuwe berekening' is beëindigd.", msgs.Current); - + Assert.AreEqual($"Validatie van '{calculation.Name}' is gestart.", msgs.Current); Assert.IsTrue(msgs.MoveNext()); - Assert.AreEqual("Berekening van 'Nieuwe berekening' is gestart.", msgs.Current); + Assert.AreEqual($"Validatie van '{calculation.Name}' is beëindigd.", msgs.Current); Assert.IsTrue(msgs.MoveNext()); - Assert.AreEqual("Berekening van 'Nieuwe berekening' is beëindigd.", msgs.Current); + Assert.AreEqual($"Berekening van '{calculation.Name}' is gestart.", msgs.Current); + Assert.IsTrue(msgs.MoveNext()); + Assert.AreEqual($"Berekening van '{calculation.Name}' is beëindigd.", msgs.Current); + Assert.IsTrue(msgs.MoveNext()); + Assert.AreEqual($"Uitvoeren van berekening '{calculation.Name}' is gelukt.", msgs.Current); }); Assert.IsNotNull(calculation.Output); Assert.IsNotNull(calculation.SemiProbabilisticOutput);