| 17 | using boost::stacktrace::frame; |
| 18 | |
| 19 | void test_deeply_nested_namespaces() { |
| 20 | BOOST_TEST(return_from_nested_namespaces().size() == 0); |
| 21 | BOOST_TEST(return_from_nested_namespaces().empty()); |
| 22 | BOOST_TEST(!return_from_nested_namespaces()); |
| 23 | } |
| 24 | |
| 25 | void test_nested() { |
| 26 | std::pair<stacktrace, stacktrace> res = function_from_library(15, function_from_main_translation_unit); |
no test coverage detected