//[example_code #define BOOST_TEST_MODULE example #include class my_exception{}; BOOST_AUTO_TEST_CASE( test ) { BOOST_CHECK_NO_THROW( throw my_exception() ); } //]