2 types derived from TestElement
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (2)
ObjectModel\TestElementAggregation.cs (1)
14internal abstract class TestElementAggregation : TestElement, ITestAggregation
ObjectModel\UnitTestElement.cs (1)
16internal class UnitTestElement : TestElement, IXmlTestStoreCustom
3 references to TestElement
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (3)
ObjectModel\TestElement.cs (1)
225return other is TestElement otherTest && _id.Equals(otherTest._id);
Utility\Converter.cs (2)
58var testElement = CreateTestElement(testId, testName, rockSteadyTestCase.FullyQualifiedName, rockSteadyTestCase.ExecutorUri.ToString(), rockSteadyTestCase.Source, testType); 647private static TestElement CreateTestElement(Guid testId, string name, string fullyQualifiedName, string adapter, string source, TestType testType)