Skip to content

Commit 84dcfdb

Browse files
authored
Fixed Typo - Changed 'Know Issue' to 'Known Issue' accross multiple files (#742)
Fixed Typo - Changed 'Know Issue' to 'Known Issue' accross multiple files
1 parent fd1030f commit 84dcfdb

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Know Issues
1+
# Known Issues
22

33
## 1) VSTest stops process execution early(`dotnet test`)
44

@@ -45,17 +45,17 @@ This happen also if there are other "piece of code" during testing that slow dow
4545
We found problem for instance with test that uses RabbitMQ.
4646

4747
*Solution:*
48-
The only way to solve this issue is to use collectors integration https://github.com/tonerdo/coverlet#vstest-integration-preferred-due-to-know-issue.
48+
The only way to solve this issue is to use collectors integration https://github.com/tonerdo/coverlet#vstest-integration-preferred-due-to-known-issue.
4949
With collector we're injected in test host throught a in-proc collector that talk with vstest platform so we can signal when we end our work.
5050

5151
## 2) Upgrade `coverlet.collector` to version > 1.0.0
5252

5353
*Affected drivers*: vstest integration `dotnet test --collect:"XPlat Code Coverage"`
5454

55-
*Symptoms:* The same of know issue 1.
55+
*Symptoms:* The same as known issue 1.
5656

5757
There is a bug inside vstest platform https://github.com/microsoft/vstest/issues/2205.
58-
If you upgrade collector package with version greather than 1.0.0 in-proc collector won't be loaded so you could incur in know issue number 1 and get zero coverage result
58+
If you upgrade collector package with version greater than 1.0.0 in-proc collector won't be loaded so you could incur known issue number 1 and get zero coverage result
5959

6060
*Solutions:*
6161
1) Reference `Mcrosoft.NET.Test.Sdk` with version *greater than* 16.4.0

Documentation/VSTestIntegration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ When we specify `--collect:"XPlat Code Coverage"` vstest platform tries to load
117117

118118
1. Outproc 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.
119119

120-
2. Inproc Datacollector : The inproc collector is loaded in the testhost process executing the tests. This collector will be needed to remove the dependency on the process exit handler to flush the hit files and avoid to hit this [serious know issue](https://github.com/tonerdo/coverlet/blob/master/Documentation/KnowIssues.md#1-vstest-stops-process-execution-earlydotnet-test)
120+
2. Inproc Datacollector : The inproc collector is loaded in the testhost process executing the tests. This collector will be needed to remove the dependency on the process exit handler to flush the hit files and avoid to hit this [serious known issue](https://github.com/tonerdo/coverlet/blob/master/Documentation/KnownIssues.md#1-vstest-stops-process-execution-earlydotnet-test)
121121

122122
## Known Issues
123123

124-
For a comprehensive list of known issues check the detailed documentation https://github.com/tonerdo/coverlet/blob/master/Documentation/KnowIssues.md
124+
For a comprehensive list of known issues check the detailed documentation https://github.com/tonerdo/coverlet/blob/master/Documentation/KnownIssues.md

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Coverlet is a cross platform code coverage framework for .NET, with support for
77
# Main contents
88
* [QuickStart](#Quick-Start)
99
* [How It Works](#How-It-Works)
10-
* [Known Issues](#Know-Issues)
10+
* [Known Issues](#Known-Issues)
1111
* [Consume nightly build](#Consume-nightly-build)
1212
* [Feature samples](Documentation/Examples.md)
1313
* [Cake Add-In](#Cake.-Add-In)
@@ -22,7 +22,7 @@ Coverlet can be used through three different *drivers*
2222
* As a .NET Global tool
2323

2424

25-
### VSTest Integration (preferred due to [know issue](https://github.com/tonerdo/coverlet/blob/master/Documentation/KnowIssues.md#1-vstest-stops-process-execution-earlydotnet-test))
25+
### VSTest Integration (preferred due to [known issue](https://github.com/tonerdo/coverlet/blob/master/Documentation/KnownIssues.md#1-vstest-stops-process-execution-earlydotnet-test))
2626

2727
### Installation
2828
```bash
@@ -120,7 +120,7 @@ _Note: The assembly you'd like to get coverage for must be different from the as
120120

121121
## Known Issues
122122

123-
Unfortunately we have some know issues, check it [here](Documentation/KnowIssues.md)
123+
Unfortunately we have some known issues, check it [here](Documentation/KnownIssues.md)
124124

125125
## Cake Add-In
126126

0 commit comments

Comments
 (0)