1 write to _options
dotnet (1)
Commands\Test\MTP\Terminal\TerminalTestReporter.cs (1)
79_options = options;
16 references to _options
dotnet (16)
Commands\Test\MTP\Terminal\TerminalTestReporter.cs (16)
80bool showProgress = _options.ShowProgress; 83if (_options.AnsiMode == AnsiMode.SimpleAnsi) 96bool useAnsi = _options.AnsiMode switch 104terminal = useAnsi ? new AnsiTerminal(console, _options.BaseDirectory) : new NonAnsiTerminal(console); 108_showActiveTests = _options.ShowActiveTests && showProgress; 130if (_options.ShowAssembly && _options.ShowAssemblyStartAndComplete) 228bool notEnoughTests = totalTests < _options.MinimumExpectedTests; 244terminal.Append(string.Format(CultureInfo.CurrentCulture, CliCommandStrings.MinimumExpectedTestsPolicyViolation, totalTests, _options.MinimumExpectedTests)); 268if (!_options.ShowAssembly && _assemblies.Count == 1) 279if (_options.ShowAssembly && _assemblies.Count > 1) 491if (outcome != TestOutcome.Passed || _options.ShowPassedTests) 527if (outcome == TestOutcome.Passed && !_options.ShowPassedTests) 572if (_options.ShowAssembly) 812if (!_isHelp && !_isDiscovery && _options.ShowAssembly && _options.ShowAssemblyStartAndComplete)