summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoronqtam <vik.kirilov@gmail.com>2017-03-17 02:38:34 +0200
committeronqtam <vik.kirilov@gmail.com>2017-05-16 00:22:15 +0300
commit408d1f9113b05013c4be3e18f56092bd410a59fa (patch)
treee3e21169bc1df03622e8ff68caf1d09431cff7e6
parent05bcc372529b3a14a2e2b3b56204216f7f07e21a (diff)
finished docs on "exception translation mechanism + the ability for users to extend it with custom exception types" - fixes #12
-rw-r--r--doc/markdown/features.md2
-rw-r--r--doc/markdown/stringification.md25
-rw-r--r--scripts/random_dev_notes.md6
3 files changed, 24 insertions, 9 deletions
diff --git a/doc/markdown/features.md b/doc/markdown/features.md
index 61b5a13..69a3521 100644
--- a/doc/markdown/features.md
+++ b/doc/markdown/features.md
@@ -60,7 +60,7 @@ The library can be used like any other if you don't like the idea of mixing prod
- only one core [**assertion macro**](assertions.md) for comparisons - standard C++ operators are used for the comparison (less than, equal, greater than...) - yet the full expression is decomposed and left and right values of the expression are logged
- assertion macros for [**exceptions**](assertions.md) - if something should or shouldn't throw
- floating point comparison support - see the [**```Approx()```**](assertions.md#floating-point-comparisons) helper
-- powerful mechanism for [**stringification**](stringification.md) of user types
+- powerful mechanism for [**stringification**](stringification.md) of user types - including [**exceptions**](stringification.md#translating-exceptions)!
- tests can be grouped in [**test suites**](testcases.md#test-suites)
- can be used without exceptions and rtti - checkout [**```DOCTEST_CONFIG_NO_EXCEPTIONS```**](configuration.md#doctest_config_no_exceptions)
- powerful [**command line**](commandline.md) with lots of options
diff --git a/doc/markdown/stringification.md b/doc/markdown/stringification.md
index cb45b1e..fe9af89 100644
--- a/doc/markdown/stringification.md
+++ b/doc/markdown/stringification.md
@@ -57,10 +57,31 @@ namespace doctest {
}
```
+## Translating exceptions
+
+By default all exceptions deriving from ```std::exception``` will be translated to strings by calling the what() method. For exception types that do not derive from ```std::exception``` - or if ```what()``` does not return a suitable string - use ```REGISTER_EXCEPTION_TRANSLATOR```. This defines a function that takes your exception type and returns a ```doctest::String```. It can appear anywhere in the code - it doesn't have to be in the same translation unit. For example:
+
+```c++
+REGISTER_EXCEPTION_TRANSLATOR(MyType& ex) {
+ return doctest::String(ex.message());
+}
+```
+
+Note that the exception may be accepted without a reference but it is considered bad practice in C++.
+
+An alternative way to register an exception translator is to do the following in some function - before executing any tests:
+
+```c++
+ // adding a lambda - the signature required as a function pointer is `doctest::String(*)(exception_type)`
+ doctest::registerExceptionTranslator<int>([](int in){ return doctest::String("int: ") + doctest::toString(in); });
+```
+
+The order of registering exception translators can be controlled - simply call the explicit function in the required order or list the exception translators with the macro in a top-to-bottom fashion in a single translation unit - everything that auto-registers in doctest works in a top-to-bottom way for a single translation unit (source file).
+
------
-- Check out the [**example**](../../examples/stringification/main.cpp) which shows how to stringify ```std::vector<T>``` and other types.
-- Note that the type ```String``` is used when specializing ```StringMaker<T>``` or overloading ```toString()``` - it is the string type **doctest** works with. ```std::string``` is not an option for the library because then it would have to drag the ```<string>``` header with it.
+- Check out the [**example**](../../examples/stringification/main.cpp) which shows how to stringify ```std::vector<T>``` and other types/exceptions.
+- Note that the type ```String``` is used when specializing ```StringMaker<T>``` or overloading ```toString()``` - it is the string type **doctest** works with. ```std::string``` is not an option because doctest would have to include the ```<string>``` header.
- To support the ```operator<<(std::ostream&...``` stringification the library has to offer a forward declaration of ```std::ostream``` and that is what the library does - but it is forbidden by the standard. It currently works everywhere - on all tested compilers - but if the user wishes to be 100% standards compliant - then the [**```DOCTEST_CONFIG_USE_IOSFWD```**](configuration.md#doctest_config_use_iosfwd) identifier can be used to force the inclusion of ```<iosfwd>```. The reason the header is not included by default is that on MSVC (for example) it drags a whole bunch of stuff with it - and after the preprocessor is finished the translation unit has grown to 42k lines of C++ code - while Clang and the libc++ are so well implemented that including ```<iosfwd>``` there results in 400 lines of code.
---
diff --git a/scripts/random_dev_notes.md b/scripts/random_dev_notes.md
index 490aaaa..cd3dc25 100644
--- a/scripts/random_dev_notes.md
+++ b/scripts/random_dev_notes.md
@@ -2,12 +2,6 @@
-exception translation mechanism - #12
-- write in docs
- - REGISTER_EXCEPTION_TRANSLATOR - can catch by value and by reference
- - doctest::registerExceptionTranslator<int>([](int in){ return doctest::String("int: ") + doctest::toString(in); });
-
-
== when making a new release: