Skip to content

Commit d9ccf05

Browse files
authored
Update unit-testing-mstest-migration-from-v1-to-v3.md
1 parent e343e48 commit d9ccf05

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

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

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -186,24 +186,24 @@ public async Task TestMethod() { ... }
186186
187187
MSTest v3 supports both XML and JSON formats for configuration files.
188188
189-
1. **Verify Configurations**: Ensure that existing `.runsettings` files align with MSTest v3 syntax and structure.
189+
1. **Verify Configurations**: Ensure that `.runsettings` files align with MSTest v3 syntax and structure.
190190
191191
---
192192
193193
## Parallel Execution and Performance Optimization
194194
195195
### New Parallelism Options
196196
197-
Configure parallel execution in `.runsettings` or JSON configuration files to improve performance.
197+
Configure parallel execution in `.runsettings` to improve performance.
198198
199199
**Example**:
200200
201-
```json
202-
{
203-
"RunConfiguration": {
204-
"MaxCpuCount": -1 // Uses all available processors
205-
}
206-
}
201+
```xml
202+
<RunSettings>
203+
<RunConfiguration>
204+
<MaxCpuCount>-1</MaxCpuCount> <!-- Uses all available processors -->
205+
</RunConfiguration>
206+
</RunSettings>
207207
```
208208
209209
### Improved Resource Usage

0 commit comments

Comments
 (0)