|
| #define | BOOST_LIGHTWEIGHT_TEST_OSTREAM std::cerr |
| |
| #define | BOOST_TEST(expr) ((expr)? (void)0: ::boost::detail::test_failed_impl(#expr, __FILE__, __LINE__, BOOST_CURRENT_FUNCTION)) |
| |
| #define | BOOST_ERROR(msg) ( ::boost::detail::error_impl(msg, __FILE__, __LINE__, BOOST_CURRENT_FUNCTION) ) |
| |
| #define | BOOST_TEST_EQ(expr1, expr2) ( ::boost::detail::test_eq_impl(#expr1, #expr2, __FILE__, __LINE__, BOOST_CURRENT_FUNCTION, expr1, expr2) ) |
| |
| #define | BOOST_TEST_NE(expr1, expr2) ( ::boost::detail::test_ne_impl(#expr1, #expr2, __FILE__, __LINE__, BOOST_CURRENT_FUNCTION, expr1, expr2) ) |
| |
| #define | BOOST_TEST_THROWS(EXPR, EXCEP) |
| |
|
| report_errors_reminder & | boost::detail::report_errors_remind () |
| |
| int & | boost::detail::test_errors () |
| |
| void | boost::detail::test_failed_impl (char const *expr, char const *file, int line, char const *function) |
| |
| void | boost::detail::error_impl (char const *msg, char const *file, int line, char const *function) |
| |
| void | boost::detail::throw_failed_impl (char const *excep, char const *file, int line, char const *function) |
| |
| template<class T , class U > |
| void | boost::detail::test_eq_impl (char const *expr1, char const *expr2, char const *file, int line, char const *function, T const &t, U const &u) |
| |
| template<class T , class U > |
| void | boost::detail::test_ne_impl (char const *expr1, char const *expr2, char const *file, int line, char const *function, T const &t, U const &u) |
| |
| int | boost::report_errors () |
| |