Skip to content

Commit 7c2aae9

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Remove the `Microsoft.VisualStudio.QualityTools.UnitTestFramework` reference fro
8484
Assert.AreSame<object>(expectedObject, actualObject);
8585
Assert.AreNotSame<object>(expectedObject, actualObject);
8686
```
87-
87+
8888
- **Test Initialization**: Use `TestInitialize` methods for async initialization.
8989
- **Cleanup**: Use `TestCleanup` methods or the `Dispose` pattern for cleanup.
9090
- **RunSettings**: The `.testsettings` file is no longer supported, meaning `<LegacySettings>` is also no longer available. Use [.runsettings](https://learn.microsoft.com/visualstudio/test/configure-unit-tests-by-using-a-dot-runsettings-file?view=vs-2022) for test configuration.

0 commit comments

Comments
 (0)