Release 1.39.0
[boost.git] / Boost_1_39_0 / libs / test / doc / src / examples / example06.cpp
blob1092369a7ea755a2970f03f26d788fc749c7c6ec
1 #define BOOST_TEST_MODULE example
2 #include <boost/test/included/unit_test.hpp>
4 //____________________________________________________________________________//
6 BOOST_AUTO_TEST_CASE( free_test_function )
8 BOOST_CHECK( true /* test assertion */ );
11 //____________________________________________________________________________//