3 writes to Output
vstest.console.arm64 (3)
src\vstest\src\vstest.console\Internal\ConsoleLogger.cs (3)
126
Output
= output;
175
Output
??= ConsoleOutput.Instance;
899
Output
??= ConsoleOutput.Instance;
57 references to Output
vstest.console.arm64 (57)
src\vstest\src\vstest.console\Internal\ConsoleLogger.cs (57)
170
[MemberNotNull(nameof(
Output
), nameof(LeafTestResults))]
180
_progressIndicator = new ProgressIndicator(
Output
, new ConsoleHelper());
236
TPDebug.Assert(
Output
is not null, "ConsoleLogger.Output is null");
240
Output
.Information(false, string.Format(CultureInfo.CurrentCulture, CommandLineResources.ExecutionTimeFormatString, timeSpan.TotalDays, CommandLineResources.Days));
244
Output
.Information(false, string.Format(CultureInfo.CurrentCulture, CommandLineResources.ExecutionTimeFormatString, timeSpan.TotalHours, CommandLineResources.Hours));
248
Output
.Information(false, string.Format(CultureInfo.CurrentCulture, CommandLineResources.ExecutionTimeFormatString, timeSpan.TotalMinutes, CommandLineResources.Minutes));
252
Output
.Information(false, string.Format(CultureInfo.CurrentCulture, CommandLineResources.ExecutionTimeFormatString, timeSpan.TotalSeconds, CommandLineResources.Seconds));
296
TPDebug.Assert(
Output
!= null, "Initialize should have been called.");
304
Output
.Information(false, ConsoleColor.Red, TestResultPrefix + CommandLineResources.ErrorMessageBanner);
306
Output
.Information(false, ConsoleColor.Red, errorMessage);
312
Output
.Information(false, ConsoleColor.Red, TestResultPrefix + CommandLineResources.StacktraceBanner);
314
Output
.Information(false, ConsoleColor.Red, stackTrace);
325
Output
.Information(false, TestResultPrefix + CommandLineResources.StdOutMessagesBanner);
326
Output
.Information(false, stdOutMessages);
338
Output
.Information(false, ConsoleColor.Red, TestResultPrefix + CommandLineResources.StdErrMessagesBanner);
339
Output
.Information(false, ConsoleColor.Red, stdErrMessages);
351
Output
.Information(false, TestResultPrefix + CommandLineResources.DbgTrcMessagesBanner);
352
Output
.Information(false, dbgTrcMessages);
364
Output
.Information(false, TestResultPrefix + CommandLineResources.AddnlInfoMessagesBanner);
365
Output
.Information(false, addnlInfoMessages);
371
Output
.WriteLine(string.Empty, OutputLevel.Information);
415
TPDebug.Assert(
Output
!= null, "Initialize should have been called");
418
Output
.WriteLine(string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestSourcesDiscovered, CommandLineOptions.Instance.Sources.Count()), OutputLevel.Information);
423
Output
.WriteLine(source, OutputLevel.Information);
435
TPDebug.Assert(
Output
is not null, "ConsoleLogger.Output is null");
449
Output
.Information(AppendPrefix, e.Message);
467
Output
.Warning(AppendPrefix, e.Message);
481
Output
.Error(AppendPrefix, e.Message);
501
TPDebug.Assert(
Output
!= null && LeafTestResults != null, "Initialize should have been called");
547
Output
.Write(GetFormattedTestIndicator(CommandLineResources.SkippedTestIndicator), OutputLevel.Information, ConsoleColor.Yellow);
548
Output
.WriteLine(testDisplayName, OutputLevel.Information);
570
Output
.Write(GetFormattedTestIndicator(CommandLineResources.FailedTestIndicator), OutputLevel.Information, ConsoleColor.Red);
571
Output
.WriteLine(testDisplayName, OutputLevel.Information);
587
Output
.Write(GetFormattedTestIndicator(CommandLineResources.PassedTestIndicator), OutputLevel.Information, ConsoleColor.Green);
588
Output
.WriteLine(testDisplayName, OutputLevel.Information);
611
Output
.Write(GetFormattedTestIndicator(CommandLineResources.SkippedTestIndicator), OutputLevel.Information, ConsoleColor.Yellow);
612
Output
.WriteLine(testDisplayName, OutputLevel.Information);
668
TPDebug.Assert(
Output
!= null, "Initialize should have been called");
676
Output
.WriteLine(string.Empty, OutputLevel.Information);
689
Output
.Information(false, CommandLineResources.AttachmentsBanner);
696
Output
.Information(false, attachmentOutput);
797
Output
.Write(outputLine, OutputLevel.Information, color.Value);
801
Output
.Write(outputLine, OutputLevel.Information);
804
Output
.Information(false, CommandLineResources.TestRunSummaryAssemblyAndFramework,
820
Output
.Error(false, CommandLineResources.TestRunCanceled);
826
Output
.Error(false, CommandLineResources.TestRunAborted);
830
Output
.Error(false, CommandLineResources.TestRunAbortedWithError, e.Error);
839
Output
.Error(false, CommandLineResources.TestRunCanceled);
845
Output
.Error(false, CommandLineResources.TestRunAborted);
849
Output
.Error(false, CommandLineResources.TestRunAbortedWithError, e.Error);
854
Output
.Error(false, CommandLineResources.TestRunFailed);
858
Output
.Information(false, ConsoleColor.Green, CommandLineResources.TestRunSuccessful);
865
Output
.Information(false, string.Format(CultureInfo.CurrentCulture, totalTestsformat, totalTests));
869
Output
.Information(false, ConsoleColor.Green, string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestRunSummaryPassedTests, passedTests));
873
Output
.Information(false, ConsoleColor.Red, string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestRunSummaryFailedTests, failedTests));
877
Output
.Information(false, ConsoleColor.Yellow, string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestRunSummarySkippedTests, skippedTests));
901
Output
.Warning(AppendPrefix, warningMessage);