Update contrib.
1 // (C) Copyright Gennadiy Rozental 2001-2005.
2 // Distributed under the Boost Software License, Version 1.0.
3 // (See accompanying file LICENSE_1_0.txt or copy at
4 // http://www.boost.org/LICENSE_1_0.txt)
6 // See http://www.boost.org/libs/test for the library home page.
8 // File : $RCSfile: parameterized_test.hpp,v $
10 // Version : $Revision: 1.7.2.1 $
12 // Description : generators and helper macros for parameterized tests
13 // ***************************************************************************
15 #ifndef BOOST_TEST_PARAMETERIZED_TEST_HPP_021102GER
16 #define BOOST_TEST_PARAMETERIZED_TEST_HPP_021102GER
19 #include <boost/test/unit_test_suite.hpp>
20 #include <boost/test/utils/callback.hpp>
23 #include <boost/type_traits/remove_reference.hpp>
24 #include <boost/type_traits/remove_const.hpp>
26 #include <boost/test/detail/suppress_warnings.hpp>
28 //____________________________________________________________________________//
30 #define BOOST_PARAM_TEST_CASE( function, begin, end ) \
31 boost::unit_test::make_test_case( function, \
32 BOOST_TEST_STRINGIZE( function ), \
36 #define BOOST_PARAM_CLASS_TEST_CASE( function, tc_instance, begin, end ) \
37 boost::unit_test::make_test_case( function, \
38 BOOST_TEST_STRINGIZE( function ), \
47 // ************************************************************************** //
48 // ************** test_func_with_bound_param ************** //
49 // ************************************************************************** //
53 template<typename ParamType>
54 struct test_func_with_bound_param {
56 test_func_with_bound_param( callback1<ParamType> test_func, T const& param )
57 : m_test_func( test_func )
61 void operator()() { m_test_func( m_param ); }
64 callback1<ParamType> m_test_func;
68 // ************************************************************************** //
69 // ************** param_test_case_generator ************** //
70 // ************************************************************************** //
72 template<typename ParamType, typename ParamIter>
73 class param_test_case_generator : public test_unit_generator {
75 param_test_case_generator( callback1<ParamType> const& test_func,
79 : m_test_func( test_func )
80 , m_tc_name( ut_detail::normalize_test_case_name( tc_name ) )
81 , m_par_begin( par_begin )
82 , m_par_end( par_end )
85 test_unit* next() const
87 if( m_par_begin == m_par_end )
90 test_func_with_bound_param<ParamType> bound_test_func( m_test_func, *m_par_begin );
91 ::boost::unit_test::test_unit* res = new test_case( m_tc_name, bound_test_func );
100 callback1<ParamType> m_test_func;
101 std::string m_tc_name;
102 mutable ParamIter m_par_begin;
106 //____________________________________________________________________________//
108 template<typename UserTestCase,typename ParamType>
109 struct user_param_tc_method_invoker {
110 typedef void (UserTestCase::*test_method)( ParamType );
113 user_param_tc_method_invoker( shared_ptr<UserTestCase> inst, test_method test_method )
114 : m_inst( inst ), m_test_method( test_method ) {}
116 void operator()( ParamType p ) { ((*m_inst).*m_test_method)( p ); }
119 shared_ptr<UserTestCase> m_inst;
120 test_method m_test_method;
123 //____________________________________________________________________________//
125 } // namespace ut_detail
127 template<typename ParamType, typename ParamIter>
128 inline ut_detail::param_test_case_generator<ParamType,ParamIter>
129 make_test_case( callback1<ParamType> const& test_func,
130 const_string tc_name,
134 return ut_detail::param_test_case_generator<ParamType,ParamIter>( test_func, tc_name, par_begin, par_end );
137 //____________________________________________________________________________//
139 template<typename ParamType, typename ParamIter>
140 inline ut_detail::param_test_case_generator<
141 BOOST_DEDUCED_TYPENAME remove_const<BOOST_DEDUCED_TYPENAME remove_reference<ParamType>::type>::type,ParamIter>
142 make_test_case( void (*test_func)( ParamType ),
143 const_string tc_name,
147 typedef BOOST_DEDUCED_TYPENAME remove_const<BOOST_DEDUCED_TYPENAME remove_reference<ParamType>::type>::type param_value_type;
148 return ut_detail::param_test_case_generator<param_value_type,ParamIter>( test_func, tc_name, par_begin, par_end );
151 //____________________________________________________________________________//
153 template<typename UserTestCase,typename ParamType, typename ParamIter>
154 inline ut_detail::param_test_case_generator<
155 BOOST_DEDUCED_TYPENAME remove_const<BOOST_DEDUCED_TYPENAME remove_reference<ParamType>::type>::type,ParamIter>
156 make_test_case( void (UserTestCase::*test_method )( ParamType ),
157 const_string tc_name,
158 boost::shared_ptr<UserTestCase> const& user_test_case,
162 typedef BOOST_DEDUCED_TYPENAME remove_const<BOOST_DEDUCED_TYPENAME remove_reference<ParamType>::type>::type param_value_type;
163 return ut_detail::param_test_case_generator<param_value_type,ParamIter>(
164 ut_detail::user_param_tc_method_invoker<UserTestCase,ParamType>( user_test_case, test_method ),
170 //____________________________________________________________________________//
176 //____________________________________________________________________________//
178 #include <boost/test/detail/enable_warnings.hpp>
180 // ***************************************************************************
181 // Revision History :
183 // $Log: parameterized_test.hpp,v $
184 // Revision 1.7.2.1 2006/10/19 09:23:04 johnmaddock
187 // Revision 1.7 2006/01/28 08:57:02 rogeeff
188 // VC6.0 workaround removed
190 // Revision 1.6 2006/01/28 07:10:20 rogeeff
193 // Revision 1.5 2005/12/14 05:16:49 rogeeff
194 // dll support introduced
196 // Revision 1.4 2005/05/02 06:00:10 rogeeff
197 // restore a parameterized user case method based testing
199 // Revision 1.3 2005/03/21 15:32:31 rogeeff
202 // Revision 1.2 2005/02/21 10:25:04 rogeeff
203 // remove const during ParamType deduction
205 // Revision 1.1 2005/02/20 08:27:06 rogeeff
206 // This a major update for Boost.Test framework. See release docs for complete list of fixes/updates
208 // ***************************************************************************
210 #endif // BOOST_TEST_PARAMETERIZED_TEST_HPP_021102GER