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.