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