2 instantiations of TestId
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (2)
ObjectModel\TestElement.cs (1)
53
_id = new
TestId
(id);
ObjectModel\TestId.cs (1)
49
public static TestId Empty { get; } = new
TestId
(Guid.Empty);
18 references to TestId
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (18)
Interfaces\ITestElement.cs (1)
8
TestId
Id { get; }
ObjectModel\TestElement.cs (3)
25
protected
TestId
_id;
61
public
TestId
Id
257
testIdParameters[
TestId
.IdLocationKey] = "@id";
ObjectModel\TestEntry.cs (2)
17
private readonly
TestId
_testId;
28
public TestEntry(
TestId
testId, TestListCategoryId catId)
ObjectModel\TestId.cs (12)
17
internal sealed class TestId : IEquatable<
TestId
>, IComparable<
TestId
>, IComparable, IXmlTestStore
49
public static
TestId
Empty { get; } = new TestId(Guid.Empty);
109
public bool Equals(
TestId
? other)
120
private bool ValueEquals(
TestId
? other)
137
return Equals(other as
TestId
);
159
public static bool operator ==(
TestId
? left,
TestId
? right)
172
public static bool operator !=(
TestId
? left,
TestId
? right)
193
public int CompareTo(
TestId
? other)
212
return CompareTo(other as
TestId
);