Paul Mendoza
Paul Mendoza

Reputation: 5787

How do I log which tests failed and which tests succeeded with NUnit by logging the test name?

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

Answers (1)

Paul Sonier
Paul Sonier

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

Related Questions