9 references to Register
Microsoft.TestPlatform.CrossPlatEngine (2)
Execution\MSTestV1TelemetryHelper.cs (2)
40
s_testTypeProperty ??= TestProperty.
Register
("TestType", "TestType", typeof(Guid), typeof(TestResult));
42
s_extensionIdProperty ??= TestProperty.
Register
("ExtensionId", "ExtensionId", typeof(string), typeof(TestResult));
Microsoft.VisualStudio.TestPlatform.ObjectModel (7)
TestCase.cs (2)
337
public static readonly TestProperty Source = TestProperty.
Register
("TestCase.Source", SourceLabel, typeof(string), typeof(TestCase));
338
public static readonly TestProperty CodeFilePath = TestProperty.
Register
("TestCase.CodeFilePath", FilePathLabel, typeof(string), typeof(TestCase));
TestResult.cs (5)
292
public static readonly TestProperty Duration = TestProperty.
Register
("TestResult.Duration", "Duration", typeof(TimeSpan), typeof(TestResult));
293
public static readonly TestProperty StartTime = TestProperty.
Register
("TestResult.StartTime", "Start Time", typeof(DateTimeOffset), typeof(TestResult));
294
public static readonly TestProperty EndTime = TestProperty.
Register
("TestResult.EndTime", "End Time", typeof(DateTimeOffset), typeof(TestResult));
295
public static readonly TestProperty ErrorMessage = TestProperty.
Register
("TestResult.ErrorMessage", "Error Message", typeof(string), typeof(TestResult));
296
public static readonly TestProperty ErrorStackTrace = TestProperty.
Register
("TestResult.ErrorStackTrace", "Error Stack Trace", typeof(string), typeof(TestResult));