Index: Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/TreeNodeInfos/HeightStructuresCalculationContextTreeNodeInfoTest.cs =================================================================== diff -u -rf5ed0a2ad860787e42f81146b5b5d768d99adace -r0cc0f65e5dd8ecc7733776517b5891cb2089adca --- Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/TreeNodeInfos/HeightStructuresCalculationContextTreeNodeInfoTest.cs (.../HeightStructuresCalculationContextTreeNodeInfoTest.cs) (revision f5ed0a2ad860787e42f81146b5b5d768d99adace) +++ Ringtoets/HeightStructures/test/Ringtoets.HeightStructures.Forms.Test/TreeNodeInfos/HeightStructuresCalculationContextTreeNodeInfoTest.cs (.../HeightStructuresCalculationContextTreeNodeInfoTest.cs) (revision 0cc0f65e5dd8ecc7733776517b5891cb2089adca) @@ -43,7 +43,6 @@ using Ringtoets.HeightStructures.Data; using Ringtoets.HeightStructures.Forms.PresentationObjects; using Ringtoets.HeightStructures.Plugin; -using Ringtoets.HeightStructures.Plugin.Properties; using Ringtoets.HydraRing.Data; using Ringtoets.Integration.Data; using HeightStructuresFormsResources = Ringtoets.HeightStructures.Forms.Properties.Resources; @@ -462,9 +461,12 @@ // Then TestHelper.AssertLogMessages(action, messages => { - var msgs = messages.GetEnumerator(); - Assert.IsTrue(msgs.MoveNext()); - StringAssert.StartsWith("Er is een fout opgetreden tijdens de berekening.", msgs.Current); + var msgs = messages.ToArray(); + StringAssert.StartsWith(String.Format("Validatie van '{0}' gestart om: ", calculation.Name), msgs[0]); + StringAssert.StartsWith(String.Format("Validatie van '{0}' beƫindigd om: ", calculation.Name), msgs[1]); + StringAssert.StartsWith(String.Format("Berekening van '{0}' gestart om: ", calculation.Name), msgs[2]); + StringAssert.StartsWith(String.Format("Hoogte kunstwerk '{0}' niet gelukt.", calculation.Name), msgs[3]); + StringAssert.StartsWith(String.Format("Berekening van '{0}' beƫindigd om: ", calculation.Name), msgs[4]); }); Assert.IsNull(calculation.Output);