5 references to None
Microsoft.TestPlatform.CrossPlatEngine (1)
DataCollection\InProcDataCollectionExtensionManager.cs (1)
302
var testProperty = TestProperty.Register(id: keyValuePair.Key, label: keyValuePair.Key, category: string.Empty, description: string.Empty, valueType: typeof(string), validateValueCallback: null, attributes: TestPropertyAttributes.
None
, owner: typeof(TestCase));
Microsoft.VisualStudio.TestPlatform.ObjectModel (4)
TestCase.cs (1)
335
public static readonly TestProperty DisplayName = TestProperty.Register("TestCase.DisplayName", NameLabel, string.Empty, string.Empty, typeof(string), ValidateDisplay, TestPropertyAttributes.
None
, typeof(TestCase));
TestProperty\TestProperty.cs (1)
294
return Register(id, label, string.Empty, string.Empty, valueType, null, TestPropertyAttributes.
None
, owner);
TestResult.cs (2)
290
public static readonly TestProperty ComputerName = TestProperty.Register("TestResult.ComputerName", "Computer Name", typeof(string), TestPropertyAttributes.
None
, typeof(TestResult));
291
public static readonly TestProperty Outcome = TestProperty.Register("TestResult.Outcome", "Outcome", string.Empty, string.Empty, typeof(TestOutcome), ValidateOutcome, TestPropertyAttributes.
None
, typeof(TestResult));