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