When running dotnet test
, is there a way of showing a list of all tests ran in console instead of some output file?
Would be ideal to see a list like this in console:
x test1
🗸 test2
🗸 test3
x test4
instead of just overall test statistics (ran, failed, skipped).
The dotnet vstest command is superseded by dotnet test , which can now be used to run assemblies.
The dotnet test command is used to execute unit tests in a given solution.
Tests in the same test collection will be run sequentially against each other, but tests in different test collections will be run in parallel against each other.
Found it. settig verbosity level lists tests:
dotnet test -v=normal
(or higher)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With