I understand that nunit console 3 can write to TestResult.xml after running the tests, where the TestResult.xml
is located inside the directory specified by --work
parameter.
But from what I can tell, TestResult.xml
contains too many (irrelevant) details, that I don't need to fix my unit tests errors. All I need is just the failed or ignored test cases, just like what is displayed in command line prompt when I am running nunit console in it.
How to configure the parameters for nunit console 3 so that it only gives me failed or ignored test cases?