A test project to learn the basics of C# programming, very reluctantly.
dotnet run --project CLI/.
dotnet test
Or to see console output do this:
dotnet test -l "console;verbosity=detailed"
...see CharlieDigital's comment at the bottom of this issue: Console.WriteLine calls during dotnet test are not emitted to the console on Windows
- Microsoft's C# documentation
- dotnet command docs
- Unit testing best practices with .NET
- Moq library docs
- Unit Testing with ILogger
- David Fowler has collected some good information
- David Fowler Dot Net project layout
- Getting Started with xUnit.net