2 writes to AttachmentSets
Microsoft.VisualStudio.TestPlatform.ObjectModel (2)
Client\Events\TestRunCompleteEventArgs.cs (2)
23AttachmentSets = new Collection<AttachmentSet>(); 76AttachmentSets = attachmentSets ?? new Collection<AttachmentSet>(); // Ensuring attachmentSets are not null, so that new attachmentSets can be combined whenever required.
20 references to AttachmentSets
Microsoft.TestPlatform.CommunicationUtilities (1)
Serialization\TestRunCompleteEventArgsConverter.cs (1)
57WriteProperty(writer, "AttachmentSets", value.AttachmentSets, options);
Microsoft.TestPlatform.CrossPlatEngine (7)
Client\Parallel\ParallelRunEventsHandler.cs (1)
131testRunCompleteArgs.AttachmentSets,
Client\TestLoggerManager.cs (1)
250e.AttachmentSets, e.InvokedDataCollectors, e.ElapsedTimeInRunningTests);
DataCollection\DataCollectionTestRunEventsHandler.cs (1)
107testRunCompletePayload?.TestRunCompleteArgs?.AttachmentSets,
EventHandlers\PathConverter.cs (1)
96UpdateAttachmentSets(testRunCompleteEventArgs.AttachmentSets, updateDirection);
EventHandlers\TestRequestHandler.cs (1)
229_pathConverter.UpdateAttachmentSets(curentArgs.AttachmentSets, PathConversionDirection.Send), curentArgs.InvokedDataCollectors, curentArgs.ElapsedTimeInRunningTests
PostProcessing\ArtifactProcessingManager.cs (2)
100if ((testRunCompleteEventArgs?.AttachmentSets.Count) <= 0) 212foreach (var attachmentSet in eventArgs?.AttachmentSets ?? Enumerable.Empty<AttachmentSet>())
Microsoft.TestPlatform.Extensions.BlameDataCollector (1)
BlameLogger.cs (1)
125foreach (var attachmentSet in e.AttachmentSets)
Microsoft.VisualStudio.TestPlatform.Client (1)
Execution\TestRunRequest.cs (1)
570testRunCompletePayload.TestRunCompleteArgs.AttachmentSets,
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (2)
TrxLogger.cs (2)
374List<CollectorDataEntry> collectorEntries = _converter.ToCollectionEntries(e.AttachmentSets, LoggerTestRun, _testResultsDirPath); 375IList<string> resultFiles = _converter.ToResultFiles(e.AttachmentSets, LoggerTestRun, _testResultsDirPath, errorMessages);
vstest.console (4)
Internal\ConsoleLogger.cs (4)
679var runLevelAttachmentsCount = e.AttachmentSets == null ? 0 : e.AttachmentSets.Sum(attachmentSet => attachmentSet.Attachments.Count); 690TPDebug.Assert(e.AttachmentSets != null, "e.AttachmentSets should not be null when runLevelAttachmentsCount > 0."); 691foreach (var attachmentSet in e.AttachmentSets)
vstest.console.arm64 (4)
src\vstest\src\vstest.console\Internal\ConsoleLogger.cs (4)
679var runLevelAttachmentsCount = e.AttachmentSets == null ? 0 : e.AttachmentSets.Sum(attachmentSet => attachmentSet.Attachments.Count); 690TPDebug.Assert(e.AttachmentSets != null, "e.AttachmentSets should not be null when runLevelAttachmentsCount > 0."); 691foreach (var attachmentSet in e.AttachmentSets)