Reputation: 5787
How do I log which tests failed and which tests succeeded with NUnit? I want to be able to write all of the NUnit output to a file after all of the tests run.
Upvotes: 0
Views: 195
Reputation: 39480
nunit-console nunit.tests.dll /out:TestResult.txt
As taken from the NUnit manual, http://www.nunit.org/index.php?p=consoleCommandLine&r=2.4.
Upvotes: 2