From d7c45360c25823fec792a9e2fa030f60d21ae30f Mon Sep 17 00:00:00 2001 From: philsquared Date: Tue, 3 Jul 2012 11:11:45 -0700 Subject: [PATCH] Added nothrow docs --- Command-line.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/Command-line.md b/Command-line.md index 4b251f8..d41e13e 100644 --- a/Command-line.md +++ b/Command-line.md @@ -111,4 +111,18 @@ Examples:
 -n testRun
 -n "tests of the widget component"
-
\ No newline at end of file + + + +## Eliding assertions expected to throw +
+-nt, --nothrow
+
+ +Skips all assertions that test that an exception is thrown, e.g. REQUIRE_THROWS. +

+These can be a nuisance in certain debugging environments that may break when exceptions are thrown (while this is usually optional for handled exceptions, it can be useful to have enabled if you are trying to track down something unexpected). +

+

+When running with this option the throw checking assertions are skipped so as not to contribute additional noise. +

\ No newline at end of file