3 writes to DisplayName
Microsoft.TestPlatform.CommunicationUtilities (2)
Serialization\TestCaseConverter.cs (1)
82testCase.DisplayName = propertyData!; break;
Serialization\TestCaseConverterV2.cs (1)
38testCase.DisplayName = display.GetString()!;
Microsoft.VisualStudio.TestPlatform.ObjectModel (1)
TestCase.cs (1)
253DisplayName = (value as string)!;
16 references to DisplayName
Microsoft.TestPlatform.CommunicationUtilities (2)
Serialization\TestCaseConverter.cs (1)
139writer.WriteStringValue(value.DisplayName);
Serialization\TestCaseConverterV2.cs (1)
81writer.WriteString("DisplayName", value.DisplayName);
Microsoft.TestPlatform.Extensions.BlameDataCollector (1)
BlameTestObject.cs (1)
53DisplayName = testCase.DisplayName;
Microsoft.VisualStudio.TestPlatform.Client (1)
Execution\TestRunRequest.cs (1)
476EqtTrace.Verbose("InProgress is {0}", testCase.DisplayName);
Microsoft.VisualStudio.TestPlatform.Extensions.Trx.TestLogger (3)
TrxLogger.cs (3)
453string testCaseName = !string.IsNullOrEmpty(testCase.DisplayName) ? testCase.DisplayName : testCase.FullyQualifiedName; 643testElement = Converter.ToTestElement(testId, executionId, parentExecutionId, testCase.DisplayName, testType, testCase);
Microsoft.VisualStudio.TestPlatform.ObjectModel (3)
DataCollector\Events\TestCaseEvents.cs (1)
80TestCaseName = testElement.DisplayName;
TestCase.cs (1)
229"TestCase.DisplayName" => DisplayName,
TestResult.cs (1)
124TestCase.DisplayName,
vstest.console (3)
Internal\ConsoleLogger.cs (1)
507testDisplayName = e.Result.TestCase.DisplayName;
Internal\MSBuildLogger.cs (1)
177formattedError.Append(result.TestCase.DisplayName);
Processors\ListTestsArgumentProcessor.cs (1)
224string.Format(CultureInfo.CurrentCulture, CommandLineResources.AvailableTestsFormat, test.DisplayName),
vstest.console.arm64 (3)
src\vstest\src\vstest.console\Internal\ConsoleLogger.cs (1)
507testDisplayName = e.Result.TestCase.DisplayName;
src\vstest\src\vstest.console\Internal\MSBuildLogger.cs (1)
177formattedError.Append(result.TestCase.DisplayName);
src\vstest\src\vstest.console\Processors\ListTestsArgumentProcessor.cs (1)
224string.Format(CultureInfo.CurrentCulture, CommandLineResources.AvailableTestsFormat, test.DisplayName),