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)
18 references to AppendLine
dotnet (18)
Commands\Test\MTP\Terminal\TerminalTestReporter.cs (18)
204
terminal.
AppendLine
(artifactGroup.Key ? CliCommandStrings.OutOfProcessArtifactsProduced : CliCommandStrings.InProcessArtifactsProduced);
320
terminal.
AppendLine
(errorText);
340
terminal.
AppendLine
(failedText);
352
terminal.
AppendLine
(passedText);
364
terminal.
AppendLine
(skippedText);
399
terminal.
AppendLine
(CliCommandStrings.HandshakeFailuresHeader);
420
terminal.
AppendLine
(string.Format(isRun ? CliCommandStrings.TestRunExitCode : CliCommandStrings.TestDiscoveryExitCode, exitCode));
648
terminal.
AppendLine
(CliCommandStrings.Expected);
651
terminal.
AppendLine
(CliCommandStrings.Actual);
684
terminal.
AppendLine
(CliCommandStrings.StandardOutput);
688
terminal.
AppendLine
(CliCommandStrings.StandardError);
756
terminal.
AppendLine
(stackTraceLine);
770
terminal.
AppendLine
(message);
868
terminal.
AppendLine
(exitCode?.ToString(CultureInfo.CurrentCulture) ?? "<null>");
986
terminal.
AppendLine
(CliCommandStrings.CancellingTestSession);
987
terminal.
AppendLine
(CliCommandStrings.PressCtrlCAgainToForceExit);
1058
terminal.
AppendLine
(string.Format(CultureInfo.CurrentCulture, CliCommandStrings.TestDiscoverySummarySingular, totalTests));
1062
terminal.
AppendLine
(string.Format(CultureInfo.CurrentCulture, CliCommandStrings.TestDiscoverySummary, totalTests, assemblies.Count));