//[example_code #define BOOST_TEST_MODULE example #include BOOST_AUTO_TEST_CASE( test ) { int i = 1; int j = 4; BOOST_CHECK_GE( i, j ); } //]