Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 807 Bytes

NOTES.md

File metadata and controls

23 lines (15 loc) · 807 Bytes

Notes

Installation

  • dotnet new tool-manifest
  • dotnet tool install dotnet-reportgenerator-globaltool

Tests

  • Run: dotnet test /p:CollectCoverage=true /p:Threshold=80 /p:CoverletOutputFormat=cobertura /p:CoverletOutput='./coverage.cobertura.xml'
  • Report: dotnet reportgenerator -reports:./coverage.cobertura.net8.0.xml -targetdir:./TestResults -reporttypes:Html

In one Go!

dotnet test /p:CollectCoverage=true /p:Threshold=80 /p:CoverletOutputFormat=cobertura /p:CoverletOutput='./coverage.cobertura.xml'
dotnet reportgenerator -reports:./coverage.cobertura.net8.0.xml -targetdir:./TestResults -reporttypes:Html

Info