
10 Mar
2005
10 Mar
'05
2:55 p.m.
BOOST_TEST_CASE_TEMPLATE_FUNCTION(float_tests, T) {
Now you could also use test case template faciltiy in conjunction with auto unit test: typedef boost::mpl::list<float, double, long double> float_types; BOOST_AUTO_TEST_CASE_TEMPLATE( float_tests, T, float_types ) { .... } Gennadiy