2 writes to InvokedDataCollectors
Microsoft.VisualStudio.TestPlatform.ObjectModel (2)
Client\Events\TestRunCompleteEventArgs.cs (2)
24InvokedDataCollectors = new Collection<InvokedDataCollector>(); 77InvokedDataCollectors = invokedDataCollectors ?? new Collection<InvokedDataCollector>(); // Ensuring that invoked data collectors are not null.
9 references to InvokedDataCollectors
Microsoft.TestPlatform.CommunicationUtilities (1)
Serialization\TestRunCompleteEventArgsConverter.cs (1)
58WriteProperty(writer, "InvokedDataCollectors", value.InvokedDataCollectors, options);
Microsoft.TestPlatform.CrossPlatEngine (6)
Client\Parallel\ParallelRunEventsHandler.cs (1)
132testRunCompleteArgs.InvokedDataCollectors,
Client\TestLoggerManager.cs (1)
250e.AttachmentSets, e.InvokedDataCollectors, e.ElapsedTimeInRunningTests);
DataCollection\DataCollectionTestRunEventsHandler.cs (2)
116testRunCompletePayload?.TestRunCompleteArgs?.InvokedDataCollectors.Add(dataCollector); 156testRunCompleteArgs.InvokedDataCollectors.Add(dataCollector);
EventHandlers\TestRequestHandler.cs (1)
229_pathConverter.UpdateAttachmentSets(curentArgs.AttachmentSets, PathConversionDirection.Send), curentArgs.InvokedDataCollectors, curentArgs.ElapsedTimeInRunningTests
PostProcessing\ArtifactProcessingManager.cs (1)
208foreach (var invokedDataCollector in eventArgs?.InvokedDataCollectors ?? Enumerable.Empty<InvokedDataCollector>())
Microsoft.VisualStudio.TestPlatform.Client (2)
Execution\TestRunRequest.cs (2)
402runCompleteArgs.InvokedDataCollectors, 571testRunCompletePayload.TestRunCompleteArgs.InvokedDataCollectors,