This project contains a number of katas with instructions ordered in a proven path described in my book Agile Technical Practices Distilled.
Copyright (c) 2025 Pedro Santos
Licensed under the EUPL-1.2
This work is licensed under the European Union Public Licence v. 1.2. You may obtain a copy of the License at https://eupl.eu/1.2/en/
This is a reference kit for educational and development purposes. You are free to use, modify, and distribute this work under the terms of the EUPL-1.2 license.
dotnet builddotnet testOr use the TRX test reporting tool for enhanced console output:
dotnet test -l trx; trxdotnet test --collect:"XPlat Code Coverage;IncludeTestAssembly=true;Format=cobertura"reportgenerator -reports:"**/*coverage.cobertura.xml" -targetdir:'CoverageReports' -reporttypes:'Html_Dark' -assemblyfilters:-AutoGeneratedProgram -classfilters:"-AutoGeneratedProgram;-*.*Should;-*.*Test*;-*.*TestDataGenerator"Open CoverageReports/index.html in your browser to view the detailed coverage report.
- .NET 8.0 SDK or later
- ReportGenerator tool (install via
dotnet tool install -g dotnet-reportgenerator-globaltool)
/src- Contains the source code for the katas/test- Contains the test projects