5 instantiations of TestListCategoryId
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (5)
ObjectModel\TestListCategory.cs (1)
101public TestListCategoryId Id { get; } = new TestListCategoryId();
ObjectModel\TestListCategoryId.cs (4)
37public static TestListCategoryId Root { get; } = new TestListCategoryId(Guid.Empty); 50public static TestListCategoryId Uncategorized { get; } = new(new Guid("8C84FA94-04C1-424b-9868-57A2D4851A1D")); 55public static TestListCategoryId Categories { get; } = new TestListCategoryId(new Guid("8C43106B-9DC1-4907-A29F-AA66A61BF5B6")); 62public static TestListCategoryId AllItems { get; } = new(new Guid("19431567-8539-422a-85D7-44EE4E166BDA"));
33 references to TestListCategoryId
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (33)
Interfaces\ITestElement.cs (1)
17TestListCategoryId CategoryId { get; set; }
ObjectModel\TestElement.cs (3)
36protected TestListCategoryId _catId; 51_catId = TestListCategoryId.Uncategorized; 149public TestListCategoryId CategoryId
ObjectModel\TestEntry.cs (2)
18private readonly TestListCategoryId _categoryId; 28public TestEntry(TestId testId, TestListCategoryId catId)
ObjectModel\TestListCategory.cs (10)
24private TestListCategoryId _parentCategoryId; 31public TestListCategory(string name, TestListCategoryId parentCategoryId) 52private TestListCategory(string name, TestListCategoryId id, TestListCategoryId parentId) : this(name, parentId) 70TrxLoggerResources.TS_UncategorizedResults, TestListCategoryId.Uncategorized, TestListCategoryId.Root); 90TrxLoggerResources.TS_AllResults, TestListCategoryId.AllItems, TestListCategoryId.Root); 101public TestListCategoryId Id { get; } = new TestListCategoryId(); 107public TestListCategoryId ParentCategoryId
ObjectModel\TestListCategoryId.cs (11)
15/// Initializes a new instance of the <see cref="TestListCategoryId"/> class. 23/// Initializes a new instance of the <see cref="TestListCategoryId"/> class. 37public static TestListCategoryId Root { get; } = new TestListCategoryId(Guid.Empty); 40/// Gets an object of <see cref="TestListCategoryId"/> class with empty GUID. 42public static TestListCategoryId Empty 48/// Gets an object of <see cref="TestListCategoryId"/> class with GUID which represent uncategorized. 50public static TestListCategoryId Uncategorized { get; } = new(new Guid("8C84FA94-04C1-424b-9868-57A2D4851A1D")); 53/// Gets an object of <see cref="TestListCategoryId"/> class with GUID which represent categorize. 55public static TestListCategoryId Categories { get; } = new TestListCategoryId(new Guid("8C43106B-9DC1-4907-A29F-AA66A61BF5B6")); 62public static TestListCategoryId AllItems { get; } = new(new Guid("19431567-8539-422a-85D7-44EE4E166BDA")); 76return other is TestListCategoryId testListCategoryId && Id.Equals(testListCategoryId.Id);
ObjectModel\TestResult.cs (2)
192private readonly TestListCategoryId _categoryId; 236TestListCategoryId testCategoryId,
ObjectModel\TestResultAggregation.cs (1)
29TestListCategoryId testCategoryId,
ObjectModel\UnitTestResult.cs (1)
24TestListCategoryId testCategoryId,
Utility\Converter.cs (2)
103TestListCategoryId testCategoryId, 686TestListCategoryId testCategoryId)