2 instantiations of TestType
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (2)
Utility\Constants.cs (2)
96public static readonly TestType OrderedTestType = new(OrderedTestTypeGuid); 106public static readonly TestType UnitTestType = new(UnitTestTypeGuid);
19 references to TestType
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (19)
Interfaces\ITestElement.cs (1)
20TestType TestType { get; }
ObjectModel\OrderedTestElement.cs (1)
31public override TestType TestType
ObjectModel\TestElement.cs (1)
199public abstract TestType TestType { get; }
ObjectModel\TestResult.cs (2)
189private readonly TestType _testType; 235TestType testType,
ObjectModel\TestResultAggregation.cs (1)
28TestType testType,
ObjectModel\TestType.cs (1)
35return obj is TestType tt && _typeId.Equals(tt._typeId);
ObjectModel\UnitTestElement.cs (1)
46public override TestType TestType
ObjectModel\UnitTestResult.cs (1)
23TestType testType,
TrxLogger.cs (3)
277var testType = Converter.GetTestType(e.Result); 623private ITestElement GetOrCreateTestElement(Guid executionId, Guid parentExecutionId, TestType testType, ITestElement? parentTestElement, ObjectModel.TestResult rockSteadyTestResult) 681private ITestResult CreateTestResult(Guid executionId, Guid parentExecutionId, TestType testType,
Utility\Constants.cs (2)
96public static readonly TestType OrderedTestType = new(OrderedTestTypeGuid); 106public static readonly TestType UnitTestType = new(UnitTestTypeGuid);
Utility\Converter.cs (5)
55TestType testType, 102TestType testType, 350public static TestType GetTestType(VisualStudio.TestPlatform.ObjectModel.TestResult testResult) 647private static TestElement CreateTestElement(Guid testId, string name, string fullyQualifiedName, string adapter, string source, TestType testType) 685TestType testType,