Skip to content
This repository was archived by the owner on Nov 3, 2023. It is now read-only.

Commit b05141d

Browse files
authored
Print errors at the end. (#20)
This way I don't have to scroll over a potentially large list of tests that weren't run to find the tests I'm interested in.
1 parent 29faffa commit b05141d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/framework/Runner/ResultReporter.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,12 @@ public void ReportResults()
6565
{
6666
PrintSummaryReport();
6767

68-
if (summary.FailureCount > 0 || summary.ErrorCount > 0)
69-
PrintErrorReport();
70-
7168
if (summary.NotRunCount > 0)
7269
PrintNotRunReport();
7370

71+
if (summary.FailureCount > 0 || summary.ErrorCount > 0)
72+
PrintErrorReport();
73+
7474
//if (commandLineOptions.Full)
7575
// PrintFullReport(result);
7676
}

0 commit comments

Comments
 (0)