#include // I really like formatted output. #include #include //#include //#include //#include //#include //#include //#include #include using namespace std; using boost::unit_test::test_suite; static const long MAX_LONG = Long::MAX(); static const long MIN_LONG = Long::MIN(); void test_long_constructors() { /* ... */ } void test_members() { /* ... */ } test_suite* init_unit_test_suite( int argc, char * argv[] ) { test_suite* test = BOOST_TEST_SUITE( "Unit tests of the Long class" ); test->add( BOOST_TEST_CASE( &test_long_constructors )); test->add( BOOST_TEST_CASE( &test_members )); return(test); }