Searched defs:user_param_tc_method_invoker (Results 1 – 1 of 1) sorted by relevance
99 struct user_param_tc_method_invoker { struct100 typedef void (UserTestCase::*test_method)( ParamType );103 user_param_tc_method_invoker( shared_ptr<UserTestCase> inst, test_method test_method ) in user_param_tc_method_invoker() argument106 void operator()( ParamType p ) { ((*m_inst).*m_test_method)( p ); } in operator ()()109 shared_ptr<UserTestCase> m_inst;110 test_method m_test_method;