2 instantiations of CollectorDataEntry
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (2)
ObjectModel\CollectorDataEntry.cs (1)
154var collector = new CollectorDataEntry(_uri, _collectorDisplayName, _agentName, null);
Utility\Converter.cs (1)
487return new CollectorDataEntry(
15 references to CollectorDataEntry
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (15)
ObjectModel\CollectorDataEntry.cs (3)
81/// Initializes a new instance of the <see cref="CollectorDataEntry"/> class. 149internal CollectorDataEntry CloneWithRelativePath(string resultsDirectory) 154var collector = new CollectorDataEntry(_uri, _collectorDisplayName, _agentName, null);
ObjectModel\TestResult.cs (3)
204private readonly List<CollectorDataEntry> _collectorDataEntries = new(); 472internal void AddCollectorDataEntries(IEnumerable<CollectorDataEntry> collectorDataEntryList) 477foreach (CollectorDataEntry collectorDataEntry in collectorDataEntryList)
ObjectModel\TestRunSummary.cs (2)
55private readonly List<CollectorDataEntry> _collectorDataEntries; 98List<CollectorDataEntry> dataCollectors)
TrxLogger.cs (1)
374List<CollectorDataEntry> collectorEntries = _converter.ToCollectionEntries(e.AttachmentSets, LoggerTestRun, _testResultsDirPath);
Utility\Converter.cs (6)
170public List<CollectorDataEntry> ToCollectionEntries(IEnumerable<AttachmentSet> attachmentSets, TestRun testRun, string trxFileDirectory) 172List<CollectorDataEntry> collectorEntries = new(); 185CollectorDataEntry collectorEntry = ToCollectorEntry(attachmentSet, Guid.Empty, testRun, trxFileDirectory); 386List<CollectorDataEntry> collectorEntries = new(); 395CollectorDataEntry collectorEntry = ToCollectorEntry(attachmentSet, testResult.Id.ExecutionId, testRun, trxFileDirectory); 438private CollectorDataEntry ToCollectorEntry(AttachmentSet attachmentSet, Guid testResultExecutionId, TestRun testRun, string trxFileDirectory)