Skip to content

Commit

Permalink
Minimal output
Browse files Browse the repository at this point in the history
  • Loading branch information
nohwnd committed Jul 13, 2020
1 parent 8644107 commit 54aca6f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/vstest.console/Internal/ConsoleLogger.cs
Expand Up @@ -852,15 +852,15 @@ private void TestRunCompleteHandler(object sender, TestRunCompleteEventArgs e)

if (passedTests > 0)
{
Output.Write(string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestRunSummaryPassedTests, passedTests), OutputLevel.Information, ConsoleColor.Green);
Output.Information(false, ConsoleColor.Green, string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestRunSummaryPassedTests, passedTests));
}
if (failedTests > 0)
{
Output.Write(string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestRunSummaryFailedTests, failedTests), OutputLevel.Information, ConsoleColor.Red);
Output.Information(false, ConsoleColor.Red, string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestRunSummaryFailedTests, failedTests));
}
if (skippedTests > 0)
{
Output.Write(string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestRunSummarySkippedTests, skippedTests), OutputLevel.Information, ConsoleColor.Yellow);
Output.Information(false, ConsoleColor.Yellow, string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestRunSummarySkippedTests, skippedTests));
}
}

Expand Down

0 comments on commit 54aca6f

Please sign in to comment.