2 types derived from TestObject
Microsoft.VisualStudio.TestPlatform.ObjectModel (2)
TestCase.cs (1)
20public sealed class TestCase : TestObject
TestResult.cs (1)
20public sealed class TestResult : TestObject
14 references to TestObject
Microsoft.TestPlatform.CommunicationUtilities (9)
Serialization\TestCaseConverter.cs (1)
91testProperty = TestProperty.Register(testProperty.Id, testProperty.Label, testProperty.GetValueType(), testProperty.Attributes, typeof(TestObject));
Serialization\TestCaseConverterV2.cs (1)
67testProperty = TestProperty.Register(testProperty.Id, testProperty.Label, testProperty.GetValueType(), testProperty.Attributes, typeof(TestObject));
Serialization\TestObjectBaseConverter.cs (3)
17/// Converter factory for <see cref="TestObject"/>-derived types that don't have their own 25return typeof(TestObject).IsAssignableFrom(typeToConvert) 37internal class TestObjectBaseConverter<T> : JsonConverter<T> where T : TestObject, new()
Serialization\TestObjectConverter.cs (1)
16/// JSON converter for the <see cref="TestObject"/> and derived entities.
Serialization\TestPropertyConverter.cs (1)
59testProperty = TestProperty.Register(id, label, category ?? string.Empty, description ?? string.Empty, resolvedType, null, attributes, typeof(TestObject));
Serialization\TestResultConverter.cs (1)
103testProperty = TestProperty.Register(testProperty.Id, testProperty.Label, testProperty.GetValueType(), testProperty.Attributes, typeof(TestObject));
Serialization\TestResultConverterV2.cs (1)
96testProperty = TestProperty.Register(testProperty.Id, testProperty.Label, testProperty.GetValueType(), testProperty.Attributes, typeof(TestObject));
Microsoft.VisualStudio.TestPlatform.ObjectModel (5)
TestObject.cs (1)
55typeof(TestObject));
TestProperty\TestProperty.cs (1)
387typeof(TestObject));
TraitCollection.cs (3)
26typeof(TestObject)); 29private readonly TestObject _testObject; 31internal TraitCollection(TestObject testObject)