Skip to content

Commit 7ca75ab

Browse files
authored
Update unit-testing-mstest-migration-from-v1-to-v3.md
1 parent abbfd0e commit 7ca75ab

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

docs/core/testing/unit-testing-mstest-migration-from-v1-to-v3.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -151,9 +151,9 @@ In MSTest v3, the handling of `Timeout` settings has been standardized to ensure
151151
152152
**What This Means**:
153153
154-
1. **Tests with Timeouts Might Need Adjustment**: If your tests have a `Timeout` attribute with specific durations, verify that those values still allow the test to complete under MSTest v3. Tests that previously passed with a certain timeout might need a higher or lower timeout value to work correctly under the new rules.
154+
- **Tests with Timeouts Might Need Adjustment**: If your tests have a `Timeout` attribute with specific durations, verify that those values still allow the test to complete under MSTest v3. Tests that previously passed with a certain timeout might need a higher or lower timeout value to work correctly under the new rules.
155155
156-
2. **Unified Timeout Handling**: MSTest v3 unified timeout handling makes timeouts more predictable, but requires checking and potentially updating `Timeout` values in older tests.
156+
- **Unified Timeout Handling**: MSTest v3 unified timeout handling makes timeouts more predictable, but requires checking and potentially updating `Timeout` values in older tests.
157157
158158
**Example**:
159159
@@ -171,9 +171,7 @@ public async Task TestMethod() { ... }
171171
172172
## Configuration changes
173173
174-
MSTest v3 supports both XML and JSON formats for configuration files.
175-
176-
1. **Verify Configurations**: Ensure that `.runsettings` files align with MSTest v3 syntax and structure.
174+
Ensure that `.runsettings` files align with MSTest v3 syntax and structure.
177175
178176
## Parallel execution and performance optimization
179177

0 commit comments

Comments
 (0)