// (C) Copyright Gennadiy Rozental 2001-2003. // See accompanying license for terms and conditions of use. // // See http://www.boost.org for most recent version including documentation. // Boost.Test #include #include using boost::unit_test_framework::test_suite; // Boost.MPL #include template void free_test_function( Number* = 0 ) { BOOST_CHECK_EQUAL( 2, (int const)Number::value ); } BOOST_META_FUNC_TEST_CASE( free_test_function ); test_suite* init_unit_test_suite( int, char* [] ) { test_suite* test= BOOST_TEST_SUITE( "Test case template example" ); typedef boost::mpl::range_c numbers; test->add( BOOST_FUNC_TEMPLATE_TEST_CASE( free_test_function, numbers ) ); return test; } // EOF