2 writes to Id
Microsoft.VisualStudio.TestPlatform.ObjectModel (2)
DataCollector\Common\TestExecId.cs (2)
18Id = Guid.NewGuid(); 23Id = id;
6 references to Id
Microsoft.VisualStudio.TestPlatform.Common (2)
DataCollection\DataCollectionAttachmentManager.cs (1)
245? fileTransferInfo.Context.TestExecId.Id.ToString()
DataCollection\TestPlatformDataCollectionLogger.cs (1)
142args.TestCaseId = context.TestExecId.Id;
Microsoft.VisualStudio.TestPlatform.ObjectModel (4)
DataCollector\Common\TestExecId.cs (4)
32public override bool Equals(object? obj) => obj is TestExecId testExecId && Id.Equals(testExecId.Id); 34public override int GetHashCode() => Id.GetHashCode(); 36public override string ToString() => Id.ToString("B");