Skip to content

Commit

Permalink
Added Code Coverage note (#752)
Browse files Browse the repository at this point in the history
  • Loading branch information
cheenamalhotra committed Oct 8, 2020
1 parent 6a9e4f1 commit f49c44d
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions BUILDGUIDE.md
Expand Up @@ -264,3 +264,17 @@ There may be times where connection cannot be made to SQL Server, we found below
<TargetsWindows>false</TargetsWindows>
<TargetsUnix>true</TargetsUnix>
```

## Collecting Code Coverage

### Using VSTest

```bash
dotnet test <test_properties...> --collect:"Code Coverage"
```

### Using Coverlet Collector

```bash
dotnet test <test_properties...> --collect:"XPlat Code Coverage"
```

0 comments on commit f49c44d

Please sign in to comment.