1 write to _options
dotnet (1)
Commands\Test\MTP\Terminal\TerminalTestReporter.cs (1)
66_options = options;
20 references to _options
dotnet (20)
Commands\Test\MTP\Terminal\TerminalTestReporter.cs (20)
73if (!_options.UseAnsi) 75terminalWithProgress = new TestProgressStateAwareTerminal(new NonAnsiTerminal(console), _options.ShowProgress, writeProgressImmediatelyAfterOutput: false, updateEvery: nonAnsiUpdateCadenceInMs); 79if (_options.UseCIAnsi) 82terminalWithProgress = new TestProgressStateAwareTerminal(new SimpleAnsiTerminal(console), _options.ShowProgress, writeProgressImmediatelyAfterOutput: true, updateEvery: nonAnsiUpdateCadenceInMs); 91? new TestProgressStateAwareTerminal(new AnsiTerminal(console, _options.BaseDirectory), _options.ShowProgress, writeProgressImmediatelyAfterOutput: true, updateEvery: ansiUpdateCadenceInMs) 92: new TestProgressStateAwareTerminal(new NonAnsiTerminal(console), _options.ShowProgress, writeProgressImmediatelyAfterOutput: false, updateEvery: nonAnsiUpdateCadenceInMs); 118if (_options.ShowAssembly && _options.ShowAssemblyStartAndComplete) 211bool notEnoughTests = totalTests < _options.MinimumExpectedTests; 227terminal.Append(string.Format(CultureInfo.CurrentCulture, CliCommandStrings.MinimumExpectedTestsPolicyViolation, totalTests, _options.MinimumExpectedTests)); 242if (!_options.ShowAssembly && _assemblies.Count == 1) 253if (_options.ShowAssembly && _assemblies.Count > 1) 410if (_options.ShowActiveTests) 432if (outcome != TestOutcome.Passed || _options.ShowPassedTests) 468if (outcome == TestOutcome.Passed && !_options.ShowPassedTests) 510if (_options.ShowAssembly) 737if (!_isHelp && !_isDiscovery && _options.ShowAssembly && _options.ShowAssemblyStartAndComplete) 991if (_options.ShowActiveTests)