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)
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);
863
terminal.
AppendLine
(exitCode?.ToString(CultureInfo.CurrentCulture) ?? "<null>");
930
terminal.
AppendLine
(CliCommandStrings.CancellingTestSession);
1001
terminal.
AppendLine
(string.Format(CultureInfo.CurrentCulture, CliCommandStrings.TestDiscoverySummarySingular, totalTests));
1005
terminal.
AppendLine
(string.Format(CultureInfo.CurrentCulture, CliCommandStrings.TestDiscoverySummary, totalTests, assemblies.Count));