The latest version of Boost Test Library is available online on www.boost.org.
Send a bug report to Gennadiy Rozental.
You can send a request to Gennadiy Rozental.
To create a test case use the macro BOOST_TEST_CASE( test_function ). For more details see the Unit Test Framework documentation.
To create a test suite use the macro BOOST_TEST_SUITE( suite_name ). For more details see the Unit Test Framework documentation.
Boost Test Library is implemented off-line. To create a test program you should link with the one of the precompiled library components or use "included" version of the component located in a boost/test/included directory. For example, to use Test Execution Monitor you may either include the <boost/test/test_tools.hpp> and link with libtest_exec_monitor.lib or you could include <boost/test/included/test_exec_monitor.hpp> in which case you would not need to link with any precompiled component. Note also that you should strictly follow specification on integration function in other case some compilers may produce linker error like this:
Unresolved external init_unit_test_suite(int, char**).
The reasons for this error is that in your implementation you should specify second argument of init_unit_test_suite exactly as in a specification, i.e.: char* [].
Use unit_test_log::instance().set_log_output( std::ostream& ). For more details see the Unit Test Framework documentation.
Use environment variable BOOST_TEST_LOG_LEVEL to define desired log trace level. You still will be able to reset this value from the command line. For the list of acceptable values see the Unit Test Framework documentation.
No. At the moment Boost Test components could not be compiled into dlls to be loaded at runtime.