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