namespace Spectre.Console.Testing; /// /// Represents the configuration settings for the class. /// public sealed class CommandAppTesterSettings { /// /// Gets or sets a value indicating whether whitespace should be trimmed from the console output. /// /// /// When enabled, leading and trailing whitespace from the console output and trailing whitespace from each line will be trimmed. /// public bool TrimConsoleOutput { get; set; } = true; }