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