| 221 | |
| 222 | #ifndef BOOST_LEAF_NO_EXCEPTIONS |
| 223 | void check_exception(nlohmann::ordered_json const & j) |
| 224 | { |
| 225 | auto const & exj = j["std::exception"]; |
| 226 | BOOST_TEST(!exj["dynamic_type"].get<std::string>().empty()); |
| 227 | BOOST_TEST(!exj["what"].get<std::string>().empty()); |
| 228 | } |
| 229 | #endif |
| 230 | |
| 231 | int main() |