
I'm not sure I see the value in that vs: BOOST_REQUIRE_IS_DIVISIBLE_BY(result,3) I must be missing something -----Original Message----- From: boost-bounces@lists.boost.org on behalf of Dean Michael Berris Sent: Fri 2/2/2007 7:08 PM BOOST_AUTO_TEST_CASE ( some_test ) { int result = perform_some_operation("Hello, World!"); value(result).should.be_divisible_by(3); }; as compared to BOOST_AUTO_TEST_CASE ( some_test ) { int result = perform_some_operation("Hello, World!"); BOOST_REQUIRE_EQUAL ( true, ((result % 3) == 0) ); }; HTH! -- Dean Michael C. Berris http://cplusplus-soup.blogspot.com/ mikhailberis AT gmail DOT com +63 928 7291459 _______________________________________________ Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost