Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/onqtam/doctest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'doc/markdown/assertions.md')
-rw-r--r--doc/markdown/assertions.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/markdown/assertions.md b/doc/markdown/assertions.md
index 0d5bdd6d..82fe18a1 100644
--- a/doc/markdown/assertions.md
+++ b/doc/markdown/assertions.md
@@ -105,6 +105,14 @@ Expects that an exception is thrown during evaluation of the expression and is s
CHECK_THROWS_WITH(func(), "invalid operation!");
```
+- ```<LEVEL>_THROWS_WITH_AS(expression, c_string, exception_type)```
+
+This is a combination of ```<LEVEL>_THROWS_WITH``` and ```<LEVEL>_THROWS_AS```.
+
+```c++
+CHECK_THROWS_WITH_AS(func(), "invalid operation!", std::runtime_error);
+```
+
- ```<LEVEL>_NOTHROW(expression)```
Expects that no exception is thrown during evaluation of the expression.