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

Commit

Permalink
Print errors at the end. (#20)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
rolfbjarne authored Jun 22, 2020
1 parent 29faffa commit b05141d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/framework/Runner/ResultReporter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ public void ReportResults()
{
PrintSummaryReport();

if (summary.FailureCount > 0 || summary.ErrorCount > 0)
PrintErrorReport();

if (summary.NotRunCount > 0)
PrintNotRunReport();

if (summary.FailureCount > 0 || summary.ErrorCount > 0)
PrintErrorReport();

//if (commandLineOptions.Full)
// PrintFullReport(result);
}
Expand Down

0 comments on commit b05141d

Please sign in to comment.