Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 787 Bytes

File metadata and controls

15 lines (12 loc) · 787 Bytes

.NET Coverage Status

Practicing C#

To build and test

I've added some batch files for windows setup. To run API: dotnet run -p Api
To just build: dotnet build
To run test: dotnet test
To run test verbose + logging: dotnet test -l:"console;verbosity=detailed"

To run a specific test, do: dotnet test --filter FullyQualifiedName~MyNamespace.MyTestClass.MyTest Example: dotnet test --filter lib.test.PermutationGeneratorTest