1 instantiation of TestRunResultAggregator
vstest.console (1)
CommandLine\TestRunResultAggregator.cs (1)
32
=> s_instance ??= new
TestRunResultAggregator
();
6 references to TestRunResultAggregator
vstest.console (6)
CommandLine\Executor.cs (1)
198
exitCode |= (
TestRunResultAggregator
.Instance.Outcome == TestOutcome.Passed) ? 0 : 1;
CommandLine\TestRunResultAggregator.cs (2)
15
private static
TestRunResultAggregator
? s_instance;
31
public static
TestRunResultAggregator
Instance
TestPlatformHelpers\TestRequestManager.cs (3)
63
private readonly
TestRunResultAggregator
_testRunResultAggregator;
102
TestRunResultAggregator
.Instance,
118
TestRunResultAggregator
testRunResultAggregator,