1 write to FilePath
Microsoft.VisualStudio.TestPlatform.ObjectModel (1)
InvokedDataCollector.cs (1)
24FilePath = filePath ?? throw new ArgumentNullException(nameof(filePath));
11 references to FilePath
Microsoft.TestPlatform.CrossPlatEngine (6)
AttachmentsProcessing\DataCollectorAttachmentsProcessorsFactory.cs (6)
37foreach (var invokedDataCollector in invokedDataCollectors.OrderByDescending(d => d.FilePath)) 45EqtTrace.Info($"DataCollectorAttachmentsProcessorsFactory: Analyzing data collector attachment processor Uri: {invokedDataCollector.Uri} AssemblyQualifiedName: {invokedDataCollector.AssemblyQualifiedName} FilePath: {invokedDataCollector.FilePath} HasAttachmentProcessor: {invokedDataCollector.HasAttachmentProcessor}"); 90var dataCollectorExtensionManager = DataCollectorExtensionManagerCache.GetOrAdd(invokedDataCollector.FilePath, DataCollectorExtensionManager.Create(invokedDataCollector.FilePath, true, TestSessionMessageLogger.Instance)); 104EqtTrace.Info($"DataCollectorAttachmentsProcessorsFactory: Creation of collector attachment processor '{attachmentProcessorType.AssemblyQualifiedName}' from file '{invokedDataCollector.FilePath}' succeded"); 117EqtTrace.Info($"DataCollectorAttachmentsProcessorsFactory: Collector attachment processor '{attachmentProcessorType.AssemblyQualifiedName}' from file '{invokedDataCollector.FilePath}' added to the 'run list'");
Microsoft.VisualStudio.TestPlatform.ObjectModel (5)
InvokedDataCollector.cs (5)
69&& FilePath == other.FilePath; 90hashCode = (hashCode * 397) ^ (FilePath != null ? FilePath.GetHashCode() : 0); 101=> $"Uri: '{Uri}' FriendlyName: '{FriendlyName}' AssemblyQualifiedName: '{AssemblyQualifiedName}' FilePath: '{FilePath}' HasAttachmentProcessor: '{HasAttachmentProcessor}'";