Skip to content

Commit e74cd4f

Browse files
Consolidate documentation
1 parent 6e46a45 commit e74cd4f

File tree

1 file changed

+20
-2
lines changed

1 file changed

+20
-2
lines changed

README.md

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,24 @@
2828
- [Shouldly](https://www.nuget.org/packages/shouldly)
2929
- [FluentAssertions](https://www.nuget.org/packages/FluentAssertions)
3030

31+
``` powershell
32+
PM> Install-Package Bogus -Version 31.0.3
33+
PM> Install-Package coverlet.collector -Version 1.3.0
34+
PM> Install-Package FluentAssertions -Version 5.10.3
35+
PM> Install-Package Microsoft.NET.Test.Sdk -Version 16.7.1
36+
PM> Install-Package Moq -Version 4.14.7
37+
PM> Install-Package ReportGenerator -Version 4.7.1
38+
PM> Install-Package Shouldly -Version 3.0.2
39+
40+
# NUnit
41+
PM> Install-Package NUnit -Version 3.12.0
42+
PM> Install-Package NUnit3TestAdapter -Version 3.17.0
43+
44+
# xUnit
45+
PM> Install-Package xunit -Version 2.4.1
46+
PM> Install-Package xunit.runner.visualstudio -Version 2.4.3
47+
```
48+
3149

3250
## Syntax
3351

@@ -159,8 +177,8 @@ PM> dotnet $(UserProfile)\.nuget\packages\reportgenerator\x.y.z\tools\netcoreapp
159177
```
160178
``` powershell
161179
# CSharp.UnitTesting.Api NUnit
162-
PM> dotnet $(UserProfile)\.nuget\packages\reportgenerator\4.6.7\tools\netcoreapp3.0\ReportGenerator.dll "-reports:CSharp.UnitTesting.Api.Nunit.Test\TestResults\*\coverage.cobertura.xml" "-targetdir:_CoverageReport\Api\NUnit" "-historydir:_CoverageReport\_History\Api\NUnit" -reporttypes:Html
180+
PM> dotnet $(UserProfile)\.nuget\packages\reportgenerator\4.7.1\tools\netcoreapp3.0\ReportGenerator.dll "-reports:CSharp.UnitTesting.Api.Nunit.Test\TestResults\*\coverage.cobertura.xml" "-targetdir:_CoverageReport\Api\NUnit" "-historydir:_CoverageReport\_History\Api\NUnit" -reporttypes:Html
163181
164182
# CSharp.UnitTesting.Api xUnit
165-
PM> dotnet $(UserProfile)\.nuget\packages\reportgenerator\4.6.7\tools\netcoreapp3.0\ReportGenerator.dll "-reports:CSharp.UnitTesting.Api.Xunit.Test\TestResults\*\coverage.cobertura.xml" "-targetdir:_CoverageReport\Api\xUnit" "-historydir:_CoverageReport\_History\Api\xUnit" -reporttypes:Html
183+
PM> dotnet $(UserProfile)\.nuget\packages\reportgenerator\4.7.1\tools\netcoreapp3.0\ReportGenerator.dll "-reports:CSharp.UnitTesting.Api.Xunit.Test\TestResults\*\coverage.cobertura.xml" "-targetdir:_CoverageReport\Api\xUnit" "-historydir:_CoverageReport\_History\Api\xUnit" -reporttypes:Html
166184
```

0 commit comments

Comments
 (0)