4 instantiations of TestRunStatistics
Microsoft.TestPlatform.CommunicationUtilities (1)
Serialization\TestRunStatisticsConverter.cs (1)
44return new TestRunStatistics(executedTests, stats);
Microsoft.TestPlatform.CrossPlatEngine (3)
Client\Parallel\ParallelRunDataAggregator.cs (1)
95var overallRunStats = new TestRunStatistics(testOutcomeMap);
Execution\BaseRunTests.cs (1)
597var runStats = TestRunCache?.TestRunStatistics ?? new TestRunStatistics(new Dictionary<TestOutcome, long>());
Execution\TestRunCache.cs (1)
160var stats = new TestRunStatistics(new Dictionary<TestOutcome, long>(_runStats));
11 references to TestRunStatistics
Microsoft.TestPlatform.CommunicationUtilities (1)
Serialization\TestRunStatisticsConverter.cs (1)
53if (value is TestRunStatistics concrete && concrete.Stats is not null)
Microsoft.TestPlatform.CrossPlatEngine (7)
Client\Parallel\ParallelRunDataAggregator.cs (1)
95var overallRunStats = new TestRunStatistics(testOutcomeMap);
Execution\BaseRunTests.cs (2)
597var runStats = TestRunCache?.TestRunStatistics ?? new TestRunStatistics(new Dictionary<TestOutcome, long>()); 650private void OnCacheHit(TestRunStatistics testRunStats, ICollection<TestResult> results, ICollection<TestCase>? inProgressTestCases)
Execution\TestRunCache.cs (3)
107internal delegate void OnCacheHit(TestRunStatistics testRunStats, ICollection<TestResult> results, ICollection<TestCase> inProgressTests); 154public TestRunStatistics TestRunStatistics 160var stats = new TestRunStatistics(new Dictionary<TestOutcome, long>(_runStats));
Interfaces\ITestRunCache.cs (1)
22TestRunStatistics TestRunStatistics { get; }
Microsoft.VisualStudio.TestPlatform.ObjectModel (3)
Client\TestRunStatistics.cs (3)
16/// Initializes a new instance of the <see cref="TestRunStatistics"/> class. 27/// Initializes a new instance of the <see cref="TestRunStatistics"/> class. 36/// Initializes a new instance of the <see cref="TestRunStatistics"/> class.