15 references to GetPropertyValue
Microsoft.TestPlatform.CrossPlatEngine (2)
Execution\MSTestV1TelemetryHelper.cs (2)
46var testType = testResult!.GetPropertyValue(s_testTypeProperty, Guid.Empty); 52var testExtension = testResult.GetPropertyValue<string?>(s_extensionIdProperty, null);
Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger (2)
HtmlLogger.cs (2)
390: testResult.GetPropertyValue(parentExecutionIdProperty, Guid.Empty); 406executionId = testResult.GetPropertyValue(executionIdProperty, Guid.Empty);
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (4)
Utility\Converter.cs (4)
302testId = rockSteadyTestCase.GetPropertyValue(tmiTestIdProperty, Guid.Empty); 324testResult.GetPropertyValue(parentExecutionIdProperty, Guid.Empty); 339executionId = testResult.GetPropertyValue(executionIdProperty, Guid.Empty); 356testTypeGuid = testTypeProperty == null ? testTypeGuid : testResult.GetPropertyValue(testTypeProperty, testTypeGuid);
Microsoft.VisualStudio.TestPlatform.ObjectModel (3)
TestCase.cs (2)
300get => GetPropertyValue<string>(ManagedTypeProperty, null); 306get => GetPropertyValue<string>(ManagedMethodProperty, null);
TraitCollection.cs (1)
73var traitsKvp = _testObject.GetPropertyValue(TraitsProperty, Enumerable.Empty<KeyValuePair<string, string>>().ToArray());
vstest.console (2)
Internal\ConsoleLogger.cs (2)
386: testResult.GetPropertyValue(parentExecutionIdProperty, Guid.Empty); 402executionId = testResult.GetPropertyValue(executionIdProperty, Guid.Empty);
vstest.console.arm64 (2)
src\vstest\src\vstest.console\Internal\ConsoleLogger.cs (2)
386: testResult.GetPropertyValue(parentExecutionIdProperty, Guid.Empty); 402executionId = testResult.GetPropertyValue(executionIdProperty, Guid.Empty);