dotnet test > is there a way to show list of tests ran in console?

I’m using .Net 6 with NUnit on macOS. Setting the verbosity level for dotnet test does not print a list of all executed tests (successful or otherwise).

What does print such a list is setting the logger verbosity like this:

dotnet test -l "console;verbosity=normal"

Leave a Comment