2 implementations of AppendLine
dotnet (2)
Commands\Test\MTP\Terminal\AnsiTerminal.cs (1)
89
public void
AppendLine
(string value)
Commands\Test\MTP\Terminal\SimpleTerminalBase.cs (1)
34
public virtual void
AppendLine
(string value)
17 references to AppendLine
dotnet (17)
Commands\Test\MTP\Terminal\TerminalTestReporter.cs (17)
187
terminal.
AppendLine
(artifactGroup.Key ? CliCommandStrings.OutOfProcessArtifactsProduced : CliCommandStrings.InProcessArtifactsProduced);
294
terminal.
AppendLine
(errorText);
314
terminal.
AppendLine
(failedText);
326
terminal.
AppendLine
(passedText);
338
terminal.
AppendLine
(skippedText);
361
terminal.
AppendLine
(string.Format(isRun ? CliCommandStrings.TestRunExitCode : CliCommandStrings.TestDiscoveryExitCode, exitCode));
589
terminal.
AppendLine
(CliCommandStrings.Expected);
592
terminal.
AppendLine
(CliCommandStrings.Actual);
625
terminal.
AppendLine
(CliCommandStrings.StandardOutput);
629
terminal.
AppendLine
(CliCommandStrings.StandardError);
697
terminal.
AppendLine
(stackTraceLine);
711
terminal.
AppendLine
(message);
786
terminal.
AppendLine
(exitCode?.ToString(CultureInfo.CurrentCulture) ?? "<null>");
853
terminal.
AppendLine
(CliCommandStrings.CancellingTestSession);
898
terminal.
AppendLine
(displayName);
908
terminal.
AppendLine
(string.Format(CultureInfo.CurrentCulture, CliCommandStrings.TestDiscoverySummarySingular, totalTests));
912
terminal.
AppendLine
(string.Format(CultureInfo.CurrentCulture, CliCommandStrings.TestDiscoverySummary, totalTests, assemblies.Count));