Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 723 Bytes

README.md

File metadata and controls

29 lines (19 loc) · 723 Bytes

C# kata starter

This project contains a number of katas with instructions ordered in a proven path described in my book Agile Technical Practices Distilled.

Instructions

Build solution

dotnet build

Execute tests

dotnet test

Execute tests with coverage

dotnet test --collect:"XPlat Code Coverage;IncludeTestAssembly=true;Format=cobertura"

Generate test coverage report

reportgenerator -reports:"**/*coverage.cobertura.xml" -targetdir:'CoverageReports' -reporttypes:'Html_Dark' -assemblyfilters:-AutoGeneratedProgram -classfilters:"-AutoGeneratedProgram;-*.*Should;-*.*Test*;-*.*TestDataGenerator"