Skip to content

Commit f3d2dbb

Browse files
authored
Update unit-testing-mstest-migration-from-v1-to-v3.md
links
1 parent d55d262 commit f3d2dbb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Remove the `Microsoft.VisualStudio.QualityTools.UnitTestFramework` reference fro
4949
- `Assert.AreSame/AreNotSame` (with object) → Use generic versions.
5050
- **Test Initialization**: Use `TestInitialize` methods for async initialization.
5151
- **Cleanup**: Use `TestCleanup` methods or the `Dispose` pattern for cleanup.
52-
- **RunSettings**: The `.testsettings` file is no longer supported, meaning `<LegacySettings>` is also no longer available. Use [.runsettings](https://learn.microsoft.com/en-gb/visualstudio/test/configure-unit-tests-by-using-a-dot-runsettings-file?view=vs-2022) for test configuration.
52+
- **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.
5353

5454
---
5555

@@ -183,4 +183,4 @@ public void ExampleTestMethod(int number, string data) {
183183

184184
## Additional Resources
185185

186-
- [New testin platform](https://learn.microsoft.com/en-us/dotnet/core/testing/unit-testing-platform-intro?tabs=dotnetcli)
186+
- [New testin platform](https://learn.microsoft.com/dotnet/core/testing/unit-testing-platform-intro?tabs=dotnetcli)

0 commit comments

Comments
 (0)