Skip to content

Commit 499e805

Browse files
committed
Update links
1 parent 57f27be commit 499e805

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

docs/test/configure-unit-tests-by-using-a-dot-runsettings-file.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ The code coverage data collector creates a log of which parts of the application
207207

208208
The video data collector captures a screen recording when tests are run. This recording is useful for troubleshooting UI tests. The video data collector is available in **Visual Studio 2017 version 15.5** and later. For an example of configuring this data collector, see the [Example *.runsettings file](#example-runsettings-file).
209209

210-
To customize any other type of diagnostic data adapters, use a [test settings file](../test/collect-diagnostic-information-using-test-settings.md).
210+
To customize any other type of diagnostic data adapters, use a [test settings file](/previous-versions/visualstudio/visual-studio-2017/test/collect-diagnostic-information-using-test-settings).
211211

212212
### Blame data collector
213213

docs/test/improve-code-quality.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,13 +95,13 @@ Coded UI tests provide a way to create fully automated tests to validate the fun
9595
Whether you choose best-of-breed Coded UI Tests or generic browser-based UI testing with [Playwright](https://playwright.dev/), Visual Studio provides all the tools you need.
9696

9797
* [Use UI automation to test your code](use-ui-automation-to-test-your-code.md)
98-
* [Get started creating, editing, and maintaining a coded UI test](walkthrough-creating-editing-and-maintaining-a-coded-ui-test.md)
99-
* [Test UWP apps with coded UI tests](test-uwp-app-with-coded-ui-test.md)
98+
* [Get started creating, editing, and maintaining a coded UI test](/previous-versions/visualstudio/visual-studio-2017/test/walkthrough-creating-editing-and-maintaining-a-coded-ui-test)
99+
* [Test UWP apps with coded UI tests](/previous-versions/visualstudio/visual-studio-2017/test/test-uwp-app-with-coded-ui-test)
100100
* [Introduction to coded UI tests with Visual Studio Enterprise (Lab)](https://azuredevopslabs.com/labs/tfs/codedui)
101101
::: moniker-end
102102

103103
## Related content
104104

105105
- [Exploratory & manual testing (Azure Test Plans)](/azure/devops/test/index?view=vsts&preserve-view=true)
106106
- [Load testing (Azure Load Testing)](/azure/load-testing/)
107-
- [Code analysis tools](../code-quality/code-analysis-for-managed-code-overview.md)
107+
- [Code analysis tools](/previous-versions/visualstudio/visual-studio-2019/code-quality/code-analysis-for-managed-code-overview)

docs/test/test-execution-with-hot-reload.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This is a new way of test execution where we change a widely used path of valida
2828
## How it works
2929
Once the option is enabled, Test Explorer will automatically use test execution with hot reload when possible. If a hot reload is not possible, it will fall back to the regular behavior of building and running tests. As a user running tests, you do not need to make any changes to your workflow (that is, continue to edit code and run tests).
3030

31-
Under the hood, we are using the same [Edit and Continue](../debugger/edit-and-continue.md) infrastructure that exists in the newly released [Hot Reload experience for editing C#/VB code at runtime](https://devblogs.microsoft.com/dotnet/introducing-net-hot-reload/) to determine the changes made. For this reason, we hot reload only when there are no "rude edits", in which case we fall back to building your tests before executing them. For more details on supported edits, read the [Edit and Continue documentation](https://github.com/dotnet/roslyn/blob/296e0fada42f241d338b169c3c6c6189101ef0b7/docs/wiki/EnC-Supported-Edits.md)
31+
Under the hood, we are using the same [Edit and Continue](/visualstudio/debugger/how-to-enable-and-disable-edit-and-continue) infrastructure that exists in the newly released [Hot Reload experience for editing C#/VB code at runtime](https://devblogs.microsoft.com/dotnet/introducing-net-hot-reload/) to determine the changes made. For this reason, we hot reload only when there are no "rude edits", in which case we fall back to building your tests before executing them. For more details on supported edits, read the [Edit and Continue documentation](https://github.com/dotnet/roslyn/blob/296e0fada42f241d338b169c3c6c6189101ef0b7/docs/wiki/EnC-Supported-Edits.md)
3232

3333
## How much faster will the test execution be?
3434
There are many variables that come into play when estimating how much time this feature will save you. For example:

docs/test/using-code-coverage-to-determine-how-much-code-is-being-tested.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ The code coverage feature is available only in Visual Studio Enterprise edition.
7272
> - If you're working with unmanaged (native) code, use a debug build.
7373
> - Generate *.pdb* (symbol) files for each assembly.
7474
75-
If you don't get the results you expect, see [Troubleshoot code coverage](../test/troubleshooting-code-coverage.md).
75+
If you don't get the results you expect, see [Troubleshoot code coverage](/troubleshoot/developer/visualstudio/ide/troubleshooting-code-coverage).
7676

7777
Don't forget to run code coverage again after updating your code. Coverage results and code coloring aren't automatically updated after you modify your code or when you run tests.
7878

@@ -330,10 +330,10 @@ To run tests from the command line, use *vstest.console.exe* utility. Code cover
330330
331331
## Troubleshoot
332332

333-
If you don't see code coverage results, the [Troubleshoot code coverage](../test/troubleshooting-code-coverage.md) article might help you.
333+
If you don't see code coverage results, the [Troubleshoot code coverage](/troubleshoot/developer/visualstudio/ide/troubleshooting-code-coverage) article might help you.
334334

335335
## Related content
336336

337337
- [Customize code coverage analysis](../test/customizing-code-coverage-analysis.md)
338-
- [Troubleshoot code coverage](../test/troubleshooting-code-coverage.md)
338+
- [Troubleshoot code coverage](/troubleshoot/developer/visualstudio/ide/troubleshooting-code-coverage)
339339
- [Unit test your code](../test/unit-test-your-code.md)

0 commit comments

Comments
 (0)