Skip to content

Commit

Permalink
Update VSTestIntegration.md (#1577)
Browse files Browse the repository at this point in the history
update vs test docs link
  • Loading branch information
WeihanLi committed Jan 4, 2024
1 parent 21d3964 commit 71c202b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Documentation/VSTestIntegration.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,11 +158,11 @@ For instance if you want to set the `Format` element as a runsettings option you
dotnet test --collect:"XPlat Code Coverage" -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Format=json,cobertura,lcov,teamcity,opencover
```

Take a look here for further information:<https://github.com/microsoft/vstest-docs/blob/master/docs/RunSettingsArguments.md>
Take a look here for further information:<https://github.com/microsoft/vstest/blob/main/docs/RunSettingsArguments.md>

## How it works

Coverlet integration is implemented with the help of [datacollectors](https://github.com/Microsoft/vstest-docs/blob/master/docs/extensions/datacollector.md).
Coverlet integration is implemented with the help of [datacollectors](https://github.com/microsoft/vstest/blob/main/docs/extensions/datacollector.md).
When we specify `--collect:"XPlat Code Coverage"` VSTest platform tries to load coverlet collectors inside `coverlet.collector.dll`

1. Out-of-proc Datacollector: The outproc collector run in a separate process(datacollector.exe/datacollector.dll) than the process in which tests are being executed(testhost*.exe/testhost.dll). This datacollector is responsible for calling into Coverlet APIs for instrumenting dlls, collecting coverage results and sending the coverage output file back to test platform.
Expand Down

0 comments on commit 71c202b

Please sign in to comment.