2 types derived from TestObject
Microsoft.VisualStudio.TestPlatform.ObjectModel (2)
TestCase.cs (1)
20
public sealed class TestCase :
TestObject
TestResult.cs (1)
20
public sealed class TestResult :
TestObject
14 references to TestObject
Microsoft.TestPlatform.CommunicationUtilities (9)
Serialization\TestCaseConverter.cs (1)
91
testProperty = TestProperty.Register(testProperty.Id, testProperty.Label, testProperty.GetValueType(), testProperty.Attributes, typeof(
TestObject
));
Serialization\TestCaseConverterV2.cs (1)
67
testProperty = 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
25
return typeof(
TestObject
).IsAssignableFrom(typeToConvert)
37
internal 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)
59
testProperty = TestProperty.Register(id, label, category ?? string.Empty, description ?? string.Empty, resolvedType, null, attributes, typeof(
TestObject
));
Serialization\TestResultConverter.cs (1)
103
testProperty = TestProperty.Register(testProperty.Id, testProperty.Label, testProperty.GetValueType(), testProperty.Attributes, typeof(
TestObject
));
Serialization\TestResultConverterV2.cs (1)
96
testProperty = TestProperty.Register(testProperty.Id, testProperty.Label, testProperty.GetValueType(), testProperty.Attributes, typeof(
TestObject
));
Microsoft.VisualStudio.TestPlatform.ObjectModel (5)
TestObject.cs (1)
55
typeof(
TestObject
));
TestProperty\TestProperty.cs (1)
387
typeof(
TestObject
));
TraitCollection.cs (3)
26
typeof(
TestObject
));
29
private readonly
TestObject
_testObject;
31
internal TraitCollection(
TestObject
testObject)