2 instantiations of TestExecId
Microsoft.VisualStudio.TestPlatform.ObjectModel (2)
DataCollector\Common\TestExecId.cs (1)
27
public static TestExecId Empty { get; } = new
TestExecId
(Guid.Empty);
DataCollector\DataCollectionContext.cs (1)
72
: this(sessionId, new
TestExecId
(testCase.Id))
5 references to TestExecId
Microsoft.VisualStudio.TestPlatform.ObjectModel (5)
DataCollector\Common\TestExecId.cs (2)
27
public static
TestExecId
Empty { get; } = new TestExecId(Guid.Empty);
32
public override bool Equals(object? obj) => obj is
TestExecId
testExecId && Id.Equals(testExecId.Id);
DataCollector\DataCollectionContext.cs (3)
50
: this(sessionId, (
TestExecId
?)null)
61
protected internal DataCollectionContext(SessionId sessionId,
TestExecId
? testExecId)
94
public
TestExecId
? TestExecId { get; }