To debug or run the api locally use
dotnet watch run
All Tests can be run by chaning the working directory of the unit or integration tests and then using the command:
dotnet test
Applying the [Trait]
attribute at the class level allows, that every test method in that class can be run seperatly.
Example to run individual test parts:
dotnet test --filter "category=application"
Want the full parametric experience?
Use
git clone https://github.com/domoar/CleanArchitectureTemplate.git
cd CleanArchitectureTemplate
to clone the repository then customize with
dotnet new cleanarch --name MyApp --SolutionName "MyApp"