3 instantiations of TestExecId
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (3)
ObjectModel\TestExecId.cs (1)
37
public static TestExecId Empty { get; } = new
TestExecId
(Guid.Empty);
Utility\Converter.cs (2)
63
testElement.ExecutionId = new
TestExecId
(executionId);
64
testElement.ParentExecutionId = new
TestExecId
(parentExecutionId);
13 references to TestExecId
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (13)
Interfaces\ITestElement.cs (2)
15
TestExecId
ExecutionId { get; set; }
16
TestExecId
ParentExecutionId { get; set; }
ObjectModel\TestElement.cs (6)
32
protected
TestExecId
_executionId;
33
protected
TestExecId
_parentExecutionId;
46
_executionId =
TestExecId
.Empty;
47
_parentExecutionId =
TestExecId
.Empty;
120
public
TestExecId
ExecutionId
129
public
TestExecId
ParentExecutionId
ObjectModel\TestExecId.cs (5)
16
/// Initializes a new instance of the <see cref="
TestExecId
"/> class.
24
/// Initializes a new instance of the <see cref="
TestExecId
"/> class.
35
/// Gets an object of <see cref="
TestExecId
"/> class which empty GUID
37
public static
TestExecId
Empty { get; } = new TestExecId(Guid.Empty);
55
return obj is
TestExecId
id && Id.Equals(id.Id);