1 implementation of ITestRunStatistics
Microsoft.VisualStudio.TestPlatform.ObjectModel (1)
Client\TestRunStatistics.cs (1)
13public class TestRunStatistics : ITestRunStatistics
18 references to ITestRunStatistics
Microsoft.TestPlatform.CommunicationUtilities (7)
Serialization\TestRunChangedEventArgsConverter.cs (2)
33var stats = DeserializeProperty<ITestRunStatistics>(root, "TestRunStatistics", options);
Serialization\TestRunCompleteEventArgsConverter.cs (2)
34var stats = DeserializeProperty<ITestRunStatistics>(root, "TestRunStatistics", options);
Serialization\TestRunStatisticsConverter.cs (3)
21internal class TestRunStatisticsConverter : JsonConverter<ITestRunStatistics> 24public override ITestRunStatistics? Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) 48public override void Write(Utf8JsonWriter writer, ITestRunStatistics value, JsonSerializerOptions options)
Microsoft.TestPlatform.CrossPlatEngine (5)
Client\Parallel\ParallelRunDataAggregator.cs (5)
26private readonly List<ITestRunStatistics> _testRunStatsList; 42_testRunStatsList = new List<ITestRunStatistics>(); 73public ITestRunStatistics GetAggregatedRunStats() 79foreach (var runStats in _testRunStatsList) 138ITestRunStatistics? testRunStats,
Microsoft.VisualStudio.TestPlatform.Common (1)
Logging\InternalTestLoggerEvents.cs (1)
288internal void CompleteTestRun(ITestRunStatistics? stats, bool isCanceled, bool isAborted, Exception? error, Collection<AttachmentSet>? attachmentSet, Collection<InvokedDataCollector>? invokedDataCollectors, TimeSpan elapsedTime)
Microsoft.VisualStudio.TestPlatform.ObjectModel (5)
Client\Events\TestRunChangedEventArgs.cs (2)
22public TestRunChangedEventArgs(ITestRunStatistics? stats, IEnumerable<TestResult>? newTestResults, IEnumerable<TestCase>? activeTests) 39public ITestRunStatistics? TestRunStatistics { get; private set; }
Client\Events\TestRunCompleteEventArgs.cs (3)
37ITestRunStatistics? stats, 64ITestRunStatistics? stats, 87public ITestRunStatistics? TestRunStatistics { get; private set; }