3 writes to DisplayName
Microsoft.TestPlatform.CommunicationUtilities (2)
Serialization\TestResultConverter.cs (1)
86testResult.DisplayName = propertyData; break;
Serialization\TestResultConverterV2.cs (1)
65testResult.DisplayName = displayName.GetString();
Microsoft.VisualStudio.TestPlatform.ObjectModel (1)
TestResult.cs (1)
203DisplayName = (string?)value; return;
11 references to DisplayName
Microsoft.TestPlatform.CommunicationUtilities (2)
Serialization\TestResultConverter.cs (1)
152writer.WriteStringValue(value.DisplayName);
Serialization\TestResultConverterV2.cs (1)
121writer.WriteString("DisplayName", value.DisplayName);
Microsoft.TestPlatform.CrossPlatEngine (1)
Execution\TestRunCache.cs (1)
370EqtTrace.Warning("TestRunCache: No test found corresponding to testResult '{0}' in inProgress list.", result.DisplayName);
Microsoft.VisualStudio.TestPlatform.Extensions.Html.TestLogger (1)
HtmlLogger.cs (1)
198DisplayName = e.Result.DisplayName ?? e.Result.TestCase.FullyQualifiedName,
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (2)
Utility\Converter.cs (2)
108string resultName = !string.IsNullOrEmpty(rockSteadyTestResult.DisplayName) ? rockSteadyTestResult.DisplayName! : testName;
Microsoft.VisualStudio.TestPlatform.ObjectModel (1)
TestResult.cs (1)
181"TestResult.DisplayName" => DisplayName,
vstest.console (2)
Internal\ConsoleLogger.cs (2)
503var testDisplayName = e.Result.DisplayName; 505if (e.Result.DisplayName.IsNullOrWhiteSpace())
vstest.console.arm64 (2)
src\vstest\src\vstest.console\Internal\ConsoleLogger.cs (2)
503var testDisplayName = e.Result.DisplayName; 505if (e.Result.DisplayName.IsNullOrWhiteSpace())