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)
20 references to AppendLine
dotnet (20)
Commands\Test\MTP\Terminal\TerminalTestReporter.cs (20)
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>");
976
terminal.
AppendLine
(text);
984
terminal.
AppendLine
(text);
1002
terminal.
AppendLine
(CliCommandStrings.CancellingTestSession);
1003
terminal.
AppendLine
(CliCommandStrings.PressCtrlCAgainToForceExit);
1074
terminal.
AppendLine
(string.Format(CultureInfo.CurrentCulture, CliCommandStrings.TestDiscoverySummarySingular, totalTests));
1078
terminal.
AppendLine
(string.Format(CultureInfo.CurrentCulture, CliCommandStrings.TestDiscoverySummary, totalTests, assemblies.Count));