Skip to content

Commit b4d7056

Browse files
authored
Update unit-testing-mstest-migration-from-v1-to-v3.md
fix
1 parent 109ddd6 commit b4d7056

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Migrating to MSTest v3 offers several benefits:
1919
## Steps to Migrate
2020

2121
### 1. Remove Assembly Reference
22+
2223
Remove the `Microsoft.VisualStudio.QualityTools.UnitTestFramework` reference from your project.
2324

2425
```xml
@@ -28,6 +29,7 @@ Remove the `Microsoft.VisualStudio.QualityTools.UnitTestFramework` reference fro
2829
```
2930

3031
### 2. Update Your Project
32+
3133
- **NuGet Package**: Install the latest [MSTest](https://www.nuget.org/packages/MSTest).
3234
- **Project File**: Update your project file to use MSTest SDK.
3335

@@ -40,6 +42,7 @@ Remove the `Microsoft.VisualStudio.QualityTools.UnitTestFramework` reference fro
4042
```
4143

4244
### 3. Update Your Code
45+
4346
- **Replace Deprecated Methods**: Update deprecated methods to newer versions.
4447
- `Assert.AreEqual/AreNotEqual` (with object) → Use generic versions.
4548
- `Assert.AreSame/AreNotSame` (with object) → Use generic versions.

0 commit comments

Comments
 (0)