File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -186,24 +186,24 @@ public async Task TestMethod() { ... }
186186
187187MSTest 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
You can’t perform that action at this time.
0 commit comments