You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
// We have to clear the listeners list on Trace since there is a trace listener by default with AssertUiEnabled = true in Desktop and that will pop up an assert window with Trace.Fail
359
368
Trace.Listeners.Clear();
360
369
Trace.Listeners.Add(textTL);
@@ -377,8 +386,8 @@ public void TraceTest02()
377
386
Trace.Unindent();
378
387
Trace.WriteLine("Message end.");
379
388
textTL.Flush();
380
-
StringnewLine=Environment.NewLine;
381
-
varexpected="Message start."+newLine+" This message should be indented.This should not be indented."+newLine+" Fail: This failure is reported with a detailed message"+newLine+" Fail: "+newLine+" Fail: This assert is reported"+newLine+"Message end."+newLine;
389
+
newLine=Environment.NewLine;
390
+
varexpected="Message start."+newLine+" This message should be indented.This should not be indented."+newLine+" "+fail+"This failure is reported with a detailed message"+newLine+" "+fail+newLine+" "+fail+"This assert is reported"+newLine+"Message end."+newLine;
0 commit comments