Added -s

Updated Command line (markdown)
philsquared
2010-12-30 08:44:07 -08:00
parent 5ccacfc996
commit 14fa11222b

@@ -37,3 +37,11 @@ The JUnit reporter is an xml format that follows the structure of the JUnit XML
In some IDEs (currently tested XCode, but Visual Studio should work) it is possible for CATCH to break into the debugger on a test failure. This can be very helpful during debug sessions - especially when there is more than one path through a particular test. In some IDEs (currently tested XCode, but Visual Studio should work) it is possible for CATCH to break into the debugger on a test failure. This can be very helpful during debug sessions - especially when there is more than one path through a particular test.
In addition to the command line option, ensure you have built your code with the DEBUG preprocessor symbol In addition to the command line option, ensure you have built your code with the DEBUG preprocessor symbol
## Showing results for successful tests
<pre>
-s, --success
</pre>
Usually you only want to see reporting for failed tests. Sometimes it's usually to see all the output (especially when you don't trust that that test you just added worked first time!).
To see successully, as well as failing, test results just pass this option.