From a157dd9105dc0fd5241f98a8d6361c4ebd7d483a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 8 Jan 2026 11:26:38 +0000 Subject: [PATCH 1/2] Initial plan From 57a712414a1c0f001b2f36f6f9c26991a6a7069a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 8 Jan 2026 11:36:53 +0000 Subject: [PATCH 2/2] Add missing Oxford commas and list punctuation Co-authored-by: Evangelink <11340282+Evangelink@users.noreply.github.com> --- .../unit-testing-mstest-writing-tests-attributes.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/core/testing/unit-testing-mstest-writing-tests-attributes.md b/docs/core/testing/unit-testing-mstest-writing-tests-attributes.md index bae3d41a846c3..6383710edf6a9 100644 --- a/docs/core/testing/unit-testing-mstest-writing-tests-attributes.md +++ b/docs/core/testing/unit-testing-mstest-writing-tests-attributes.md @@ -373,9 +373,9 @@ The class provid `TestDataRow` offers the following benefits: -- **Custom display names**: Set a unique display name for each test case using the property -- **Test properties**: Attach metadata to individual test cases using the property -- **Type-safe data**: Use the generic `TestDataRow` to provide strongly-typed test data +- **Custom display names**: Set a unique display name for each test case using the property. +- **Test properties**: Attach metadata to individual test cases using the property. +- **Type-safe data**: Use the generic `TestDataRow` to provide strongly-typed test data. ```csharp [TestClass] @@ -411,7 +411,7 @@ Data-driven test attributes like (default): MSTest automatically determines whether to unfold test cases based on the number of data rows. Test cases are collapsed (folded) when there are many data rows to avoid cluttering Test Explorer, and unfolded when there are few data rows for better visibility. -- : All test cases are expanded and shown individually in Test Explorer and TRX results. Each test case can be run independently. +- : All test cases are expanded and shown individually in Test Explorer, and TRX results. Each test case can be run independently. - : All test cases are collapsed into a single test node. Individual test cases cannot be run independently; the entire data-driven test runs as one unit. For most scenarios, the default `Auto` behavior provides the best balance between usability and performance. Changing this setting is considered an advanced scenario and should only be done when you have specific requirements, such as non-deterministic data source or known limitations or bugs of MSTest. @@ -636,7 +636,7 @@ Starting with MSTest 3.6, it is possible to specify