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