src\vstest\src\vstest.console\Internal\ConsoleLogger.cs (9)
314Output.Information(false, ConsoleColor.Red, TestResultPrefix + CommandLineResources.ErrorMessageBanner);
315var errorMessage = string.Format(CultureInfo.CurrentCulture, "{0}{1}{2}", TestResultPrefix, TestMessageFormattingPrefix, result.ErrorMessage);
322Output.Information(false, ConsoleColor.Red, TestResultPrefix + CommandLineResources.StacktraceBanner);
323var stackTrace = string.Format(CultureInfo.CurrentCulture, "{0}{1}", TestResultPrefix, result.ErrorStackTrace);
335Output.Information(false, TestResultPrefix + CommandLineResources.StdOutMessagesBanner);
348Output.Information(false, ConsoleColor.Red, TestResultPrefix + CommandLineResources.StdErrMessagesBanner);
361Output.Information(false, TestResultPrefix + CommandLineResources.DbgTrcMessagesBanner);
374Output.Information(false, TestResultPrefix + CommandLineResources.AddnlInfoMessagesBanner);
637static string GetFormattedTestIndicator(string indicator) => TestResultPrefix + indicator + TestResultSuffix;