up vote 1 down vote favorite
share [g+] share [fb]

How do you in any of the common .NET testing frameworks MSTest, NUnit, MbUnit, or xUnit.NET get the command line test runner to output a simple yes/no or true/false or 1/0 on whether all the tests passed or failed?

I'm open to workarounds like:
1) no output if all the tests passed, output if anything fails.
2) count of tests that failed. I could look for zero or non-zero values.
3) other things similiar to #1 or #2

Which of these frameworks provide this kind of capability. I did some playing with MSTest today and didn't see a way to make MSTest.exe output something I could use.

link|improve this question

71% accept rate
When you consider that MSTEST has been around for a few years, this is a surprising omission - unless it isn't important. Have you tried the /resultsfile switch? – John Saunders Mar 16 '09 at 2:00
I guess I could inspect the resultsfile. Seems like a lot of work. I'll give it a shot tomorrow though. – brun Mar 16 '09 at 3:09
feedback

3 Answers

they all output XML if you want (esp MSTEST). You can use XSLT like my version for MSTEST

link|improve this answer
Should I take the total number of tests and compare that to "passed"? Will that avoid adding up the errors, failed, timeout, aborted, etc... ? – brun Mar 16 '09 at 16:17
+1 by the way... I like this idea. – brun Mar 16 '09 at 16:17
No there are lots of stats. I used Found as as example of what should have been attempted (removing ignored I think) – Preet Sangha Mar 17 '09 at 1:32
feedback

Have a look at Gallio, a framework and other tools (test runner, etc.) that MbUnit is built on, but that also handles the outputs MSTest, NUnit, RSpec, etc.

EDIT: So, while that isn't exactly what you asked for, if you use the output from the Gallio test-runner, then you've got free support for the test formats - its essentially a standard output.

link|improve this answer
feedback

MSTest and most other runners return an exitcode you can check on.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.