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..84087452af127 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] @@ -412,7 +412,7 @@ The `UnfoldingStrategy` property accepts the following values: - (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 collapsed into a single test node. Individual test cases cannot be run independently; the entire data-driven test runs as one unit. +- : All test cases are collapsed into a single test node. Individual test cases can't 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.