Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/guiunit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRolf Bjarne Kvinge <rolf@xamarin.com>2020-06-22 17:02:19 +0300
committerGitHub <noreply@github.com>2020-06-22 17:02:19 +0300
commitb05141db875c695f0edb1d2bf67ae3f1fe1914c4 (patch)
tree5f55baa4a39e593333498a022f08888349f30fc6
parent29faffa82201c61a6b51f9b647825c8fbd9ef8de (diff)
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.
-rwxr-xr-xsrc/framework/Runner/ResultReporter.cs6
1 files 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);
}