vote up 1 vote down star

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.

flag

68% 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 at 2:00
I guess I could inspect the resultsfile. Seems like a lot of work. I'll give it a shot tomorrow though. – B. Tyndall Mar 16 at 3:09

1 Answer

vote up 2 vote down

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

link|flag
Should I take the total number of tests and compare that to "passed"? Will that avoid adding up the errors, failed, timeout, aborted, etc... ? – B. Tyndall Mar 16 at 16:17
+1 by the way... I like this idea. – B. Tyndall Mar 16 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 at 1:32

Your Answer

Get an OpenID
or

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