From b05141db875c695f0edb1d2bf67ae3f1fe1914c4 Mon Sep 17 00:00:00 2001 From: Rolf Bjarne Kvinge Date: Mon, 22 Jun 2020 16:02:19 +0200 Subject: 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. --- src/framework/Runner/ResultReporter.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/framework/Runner/ResultReporter.cs b/src/framework/Runner/ResultReporter.cs index 1a3b2b6..44a7227 100755 --- a/src/framework/Runner/ResultReporter.cs +++ b/src/framework/Runner/ResultReporter.cs @@ -65,12 +65,12 @@ namespace NUnitLite.Runner { 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); } -- cgit v1.2.3