Skip to content

Commit 0290c4f

Browse files
authored
Apply suggestions from code review
1 parent 8d9dcd8 commit 0290c4f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/core/testing/unit-testing-platform-extensions-code-coverage.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,18 @@ Microsoft Code Coverage provides the following options:
3232
| `--coverage` | Collect the code coverage using dotnet-coverage tool. |
3333
| `--coverage-output` | The name or path of the produced coverage file. By default, the file is `TestResults/<guid>.coverage`. |
3434
| `--coverage-output-format` | Output file format. Supported values are: `coverage`, `xml`, and `cobertura`. Default is `coverage`. |
35-
| `--coverage-settings` | [XML code coverage settings](https://learn.microsoft.com/dotnet/core/additional-tools/dotnet-coverage#settings). |
35+
| `--coverage-settings` | [XML code coverage settings](../additional-tools/dotnet-coverage.md#settings). |
3636

3737
For more information about the available options, see [settings](../additional-tools/dotnet-coverage.md#settings) and [samples](https://github.com/microsoft/codecoverage/tree/main/samples/Algorithms).
3838

3939
## Coverlet
4040

4141
> [!IMPORTANT]
42-
> The `coverlet.collector` NuGet package is designed specifically for VSTest and cannot be used with `Microsoft.Testing.Platform`
42+
> The `coverlet.collector` NuGet package is designed specifically for VSTest and cannot be used with `Microsoft.Testing.Platform`.
4343
4444
There's currently no Coverlet extension, but you can use [Coverlet .NET global tool](https://github.com/coverlet-coverage/coverlet#net-global-tool-guide-suffers-from-possible-known-issue).
4545

46-
Assuming you have already installed coverlet global tool, you can now run:
46+
Assuming you've already installed the Coverlet global tool, you can now run:
4747

4848
```bash
4949
coverlet .\bin\Debug\net8.0\TestProject2.dll --target "dotnet" --targetargs "test .\bin\Debug\net8.0\TestProject2.dll --no-build"

0 commit comments

Comments
 (0)