// (C) Copyright Gennadiy Rozental 2003. // Permission to copy, use, modify, sell and distribute this software // is granted provided this copyright notice appears in all copies. // This software is provided "as is" without express or implied warranty, // and with no claim as to its suitability for any purpose. // // 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 "boost/mpl/range_c.hpp" 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