38 #ifndef GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_ACTIONS_H_
39 #define GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_ACTIONS_H_
50 template <
typename Result,
typename ArgumentTuple>
56 template <
typename Function>
61 template <
class Class,
typename MethodPtr>
62 static R InvokeMethod(Class* obj_ptr,
64 const ::testing::tuple<>&) {
65 return (obj_ptr->*method_ptr)();
69 template <
typename R,
typename A1>
72 template <
typename Function>
74 return function(get<0>(
args));
77 template <
class Class,
typename MethodPtr>
78 static R InvokeMethod(Class* obj_ptr,
80 const ::testing::tuple<A1>&
args) {
81 return (obj_ptr->*method_ptr)(get<0>(
args));
85 template <
typename R,
typename A1,
typename A2>
88 template <
typename Function>
90 return function(get<0>(
args), get<1>(args));
93 template <
class Class,
typename MethodPtr>
94 static R InvokeMethod(Class* obj_ptr,
96 const ::testing::tuple<A1, A2>&
args) {
97 return (obj_ptr->*method_ptr)(get<0>(
args), get<1>(args));
101 template <
typename R,
typename A1,
typename A2,
typename A3>
104 template <
typename Function>
106 return function(get<0>(
args), get<1>(args), get<2>(
args));
109 template <
class Class,
typename MethodPtr>
110 static R InvokeMethod(Class* obj_ptr,
111 MethodPtr method_ptr,
112 const ::testing::tuple<A1, A2, A3>&
args) {
113 return (obj_ptr->*method_ptr)(get<0>(
args), get<1>(args),
118 template <
typename R,
typename A1,
typename A2,
typename A3,
typename A4>
121 template <
typename Function>
124 return function(get<0>(
args), get<1>(
args), get<2>(
args),
128 template <
class Class,
typename MethodPtr>
129 static R InvokeMethod(Class* obj_ptr,
130 MethodPtr method_ptr,
131 const ::testing::tuple<A1, A2, A3, A4>&
args) {
132 return (obj_ptr->*method_ptr)(get<0>(
args), get<1>(args),
133 get<2>(
args), get<3>(args));
137 template <
typename R,
typename A1,
typename A2,
typename A3,
typename A4,
141 template <
typename Function>
144 return function(get<0>(
args), get<1>(
args), get<2>(
args),
148 template <
class Class,
typename MethodPtr>
149 static R InvokeMethod(Class* obj_ptr,
150 MethodPtr method_ptr,
151 const ::testing::tuple<A1, A2, A3, A4, A5>&
args) {
152 return (obj_ptr->*method_ptr)(get<0>(
args), get<1>(args),
153 get<2>(
args), get<3>(args), get<4>(
args));
157 template <
typename R,
typename A1,
typename A2,
typename A3,
typename A4,
158 typename A5,
typename A6>
161 template <
typename Function>
164 return function(get<0>(
args), get<1>(
args), get<2>(
args),
168 template <
class Class,
typename MethodPtr>
169 static R InvokeMethod(Class* obj_ptr,
170 MethodPtr method_ptr,
171 const ::testing::tuple<A1, A2, A3, A4, A5, A6>&
args) {
172 return (obj_ptr->*method_ptr)(get<0>(
args), get<1>(args),
173 get<2>(
args), get<3>(args), get<4>(
args), get<5>(args));
177 template <
typename R,
typename A1,
typename A2,
typename A3,
typename A4,
178 typename A5,
typename A6,
typename A7>
181 template <
typename Function>
184 return function(get<0>(
args), get<1>(
args), get<2>(
args),
188 template <
class Class,
typename MethodPtr>
189 static R InvokeMethod(Class* obj_ptr,
190 MethodPtr method_ptr,
191 const ::testing::tuple<A1, A2, A3, A4, A5, A6,
193 return (obj_ptr->*method_ptr)(get<0>(
args), get<1>(
args),
199 template <
typename R,
typename A1,
typename A2,
typename A3,
typename A4,
200 typename A5,
typename A6,
typename A7,
typename A8>
203 template <
typename Function>
206 return function(get<0>(
args), get<1>(
args), get<2>(
args),
211 template <
class Class,
typename MethodPtr>
212 static R InvokeMethod(Class* obj_ptr,
213 MethodPtr method_ptr,
214 const ::testing::tuple<A1, A2, A3, A4, A5, A6, A7,
216 return (obj_ptr->*method_ptr)(get<0>(
args), get<1>(
args),
222 template <
typename R,
typename A1,
typename A2,
typename A3,
typename A4,
223 typename A5,
typename A6,
typename A7,
typename A8,
typename A9>
224 class InvokeHelper<
R, ::testing::tuple<A1, A2, A3, A4, A5, A6, A7, A8, A9> > {
226 template <
typename Function>
228 A6, A7, A8, A9>&
args) {
229 return function(get<0>(
args), get<1>(
args), get<2>(
args),
234 template <
class Class,
typename MethodPtr>
235 static R InvokeMethod(Class* obj_ptr,
236 MethodPtr method_ptr,
237 const ::testing::tuple<A1, A2, A3, A4, A5, A6, A7, A8,
239 return (obj_ptr->*method_ptr)(get<0>(
args), get<1>(
args),
245 template <
typename R,
typename A1,
typename A2,
typename A3,
typename A4,
246 typename A5,
typename A6,
typename A7,
typename A8,
typename A9,
248 class InvokeHelper<
R, ::testing::tuple<A1, A2, A3, A4, A5, A6, A7, A8, A9,
251 template <
typename Function>
253 A6, A7, A8, A9, A10>&
args) {
254 return function(get<0>(
args), get<1>(
args), get<2>(
args),
259 template <
class Class,
typename MethodPtr>
260 static R InvokeMethod(Class* obj_ptr,
261 MethodPtr method_ptr,
262 const ::testing::tuple<A1, A2, A3, A4, A5, A6, A7, A8,
264 return (obj_ptr->*method_ptr)(get<0>(
args), get<1>(
args),
272 #define GMOCK_FIELD_(Tuple, N) \
273 typename ::testing::tuple_element<N, Tuple>::type
293 template <
typename Result,
typename ArgumentTuple,
int k1,
int k2,
int k3,
294 int k4,
int k5,
int k6,
int k7,
int k8,
int k9,
int k10>
305 return SelectedArgs(get<k1>(args), get<k2>(args), get<k3>(args),
306 get<k4>(args), get<k5>(args), get<k6>(args), get<k7>(args),
307 get<k8>(args), get<k9>(args), get<k10>(args));
311 template <
typename Result,
typename ArgumentTuple>
313 -1, -1, -1, -1, -1, -1, -1, -1, -1, -1> {
322 template <
typename Result,
typename ArgumentTuple,
int k1>
324 k1, -1, -1, -1, -1, -1, -1, -1, -1, -1> {
333 template <
typename Result,
typename ArgumentTuple,
int k1,
int k2>
335 k1, k2, -1, -1, -1, -1, -1, -1, -1, -1> {
345 template <
typename Result,
typename ArgumentTuple,
int k1,
int k2,
int k3>
347 k1, k2, k3, -1, -1, -1, -1, -1, -1, -1> {
353 return SelectedArgs(get<k1>(args), get<k2>(args), get<k3>(args));
357 template <
typename Result,
typename ArgumentTuple,
int k1,
int k2,
int k3,
360 k1, k2, k3, k4, -1, -1, -1, -1, -1, -1> {
367 return SelectedArgs(get<k1>(args), get<k2>(args), get<k3>(args),
372 template <
typename Result,
typename ArgumentTuple,
int k1,
int k2,
int k3,
375 k1, k2, k3, k4, k5, -1, -1, -1, -1, -1> {
382 return SelectedArgs(get<k1>(args), get<k2>(args), get<k3>(args),
383 get<k4>(args), get<k5>(args));
387 template <
typename Result,
typename ArgumentTuple,
int k1,
int k2,
int k3,
388 int k4,
int k5,
int k6>
390 k1, k2, k3, k4, k5, k6, -1, -1, -1, -1> {
398 return SelectedArgs(get<k1>(args), get<k2>(args), get<k3>(args),
399 get<k4>(args), get<k5>(args), get<k6>(args));
403 template <
typename Result,
typename ArgumentTuple,
int k1,
int k2,
int k3,
404 int k4,
int k5,
int k6,
int k7>
406 k1, k2, k3, k4, k5, k6, k7, -1, -1, -1> {
414 return SelectedArgs(get<k1>(args), get<k2>(args), get<k3>(args),
415 get<k4>(args), get<k5>(args), get<k6>(args), get<k7>(args));
419 template <
typename Result,
typename ArgumentTuple,
int k1,
int k2,
int k3,
420 int k4,
int k5,
int k6,
int k7,
int k8>
422 k1, k2, k3, k4, k5, k6, k7, k8, -1, -1> {
431 return SelectedArgs(get<k1>(args), get<k2>(args), get<k3>(args),
432 get<k4>(args), get<k5>(args), get<k6>(args), get<k7>(args),
437 template <
typename Result,
typename ArgumentTuple,
int k1,
int k2,
int k3,
438 int k4,
int k5,
int k6,
int k7,
int k8,
int k9>
440 k1, k2, k3, k4, k5, k6, k7, k8, k9, -1> {
449 return SelectedArgs(get<k1>(args), get<k2>(args), get<k3>(args),
450 get<k4>(args), get<k5>(args), get<k6>(args), get<k7>(args),
451 get<k8>(args), get<k9>(args));
458 template <
typename InnerAction,
int k1 = -1,
int k2 = -1,
int k3 = -1,
459 int k4 = -1,
int k5 = -1,
int k6 = -1,
int k7 = -1,
int k8 = -1,
460 int k9 = -1,
int k10 = -1>
465 template <
typename F>
469 template <
typename F>
479 k5, k6, k7, k8, k9, k10>::Select(args));
511 template <
typename Result,
class Impl>
514 static Result
Perform(Impl* impl, const ::testing::tuple<>&
args) {
521 template <
typename A0>
522 static Result
Perform(Impl* impl, const ::testing::tuple<A0>&
args) {
523 return impl->template gmock_PerformImpl<A0>(
args, get<0>(
args),
529 template <
typename A0,
typename A1>
530 static Result
Perform(Impl* impl, const ::testing::tuple<A0, A1>&
args) {
531 return impl->template gmock_PerformImpl<A0, A1>(
args, get<0>(
args),
537 template <
typename A0,
typename A1,
typename A2>
538 static Result
Perform(Impl* impl, const ::testing::tuple<A0, A1, A2>&
args) {
539 return impl->template gmock_PerformImpl<A0, A1, A2>(
args, get<0>(
args),
545 template <
typename A0,
typename A1,
typename A2,
typename A3>
546 static Result
Perform(Impl* impl, const ::testing::tuple<A0, A1, A2,
548 return impl->template gmock_PerformImpl<A0, A1, A2, A3>(
args, get<0>(
args),
554 template <
typename A0,
typename A1,
typename A2,
typename A3,
typename A4>
555 static Result
Perform(Impl* impl, const ::testing::tuple<A0, A1, A2, A3,
557 return impl->template gmock_PerformImpl<A0, A1, A2, A3, A4>(
args,
558 get<0>(
args), get<1>(args), get<2>(
args), get<3>(args), get<4>(
args),
563 template <
typename A0,
typename A1,
typename A2,
typename A3,
typename A4,
565 static Result
Perform(Impl* impl, const ::testing::tuple<A0, A1, A2, A3, A4,
567 return impl->template gmock_PerformImpl<A0, A1, A2, A3, A4, A5>(
args,
568 get<0>(
args), get<1>(args), get<2>(
args), get<3>(args), get<4>(
args),
573 template <
typename A0,
typename A1,
typename A2,
typename A3,
typename A4,
574 typename A5,
typename A6>
575 static Result
Perform(Impl* impl, const ::testing::tuple<A0, A1, A2, A3, A4,
577 return impl->template gmock_PerformImpl<A0, A1, A2, A3, A4, A5, A6>(
args,
578 get<0>(
args), get<1>(args), get<2>(
args), get<3>(args), get<4>(
args),
583 template <
typename A0,
typename A1,
typename A2,
typename A3,
typename A4,
584 typename A5,
typename A6,
typename A7>
585 static Result
Perform(Impl* impl, const ::testing::tuple<A0, A1, A2, A3, A4,
587 return impl->template gmock_PerformImpl<A0, A1, A2, A3, A4, A5, A6,
588 A7>(
args, get<0>(
args), get<1>(args), get<2>(
args), get<3>(args),
593 template <
typename A0,
typename A1,
typename A2,
typename A3,
typename A4,
594 typename A5,
typename A6,
typename A7,
typename A8>
595 static Result
Perform(Impl* impl, const ::testing::tuple<A0, A1, A2, A3, A4,
596 A5, A6, A7, A8>&
args) {
597 return impl->template gmock_PerformImpl<A0, A1, A2, A3, A4, A5, A6, A7,
598 A8>(
args, get<0>(
args), get<1>(args), get<2>(
args), get<3>(args),
599 get<4>(
args), get<5>(args), get<6>(
args), get<7>(args), get<8>(
args),
603 template <
typename A0,
typename A1,
typename A2,
typename A3,
typename A4,
604 typename A5,
typename A6,
typename A7,
typename A8,
typename A9>
605 static Result
Perform(Impl* impl, const ::testing::tuple<A0, A1, A2, A3, A4,
606 A5, A6, A7, A8, A9>&
args) {
607 return impl->template gmock_PerformImpl<A0, A1, A2, A3, A4, A5, A6, A7, A8,
608 A9>(
args, get<0>(
args), get<1>(args), get<2>(
args), get<3>(args),
609 get<4>(
args), get<5>(args), get<6>(
args), get<7>(args), get<8>(
args),
623 template <
int k1,
typename InnerAction>
624 inline internal::WithArgsAction<InnerAction, k1>
629 template <
int k1,
int k2,
typename InnerAction>
630 inline internal::WithArgsAction<InnerAction, k1, k2>
635 template <
int k1,
int k2,
int k3,
typename InnerAction>
636 inline internal::WithArgsAction<InnerAction, k1, k2, k3>
641 template <
int k1,
int k2,
int k3,
int k4,
typename InnerAction>
642 inline internal::WithArgsAction<InnerAction, k1, k2, k3, k4>
647 template <
int k1,
int k2,
int k3,
int k4,
int k5,
typename InnerAction>
648 inline internal::WithArgsAction<InnerAction, k1, k2, k3, k4, k5>
653 template <
int k1,
int k2,
int k3,
int k4,
int k5,
int k6,
typename InnerAction>
654 inline internal::WithArgsAction<InnerAction, k1, k2, k3, k4, k5, k6>
659 template <
int k1,
int k2,
int k3,
int k4,
int k5,
int k6,
int k7,
660 typename InnerAction>
661 inline internal::WithArgsAction<InnerAction, k1, k2, k3, k4, k5, k6, k7>
667 template <
int k1,
int k2,
int k3,
int k4,
int k5,
int k6,
int k7,
int k8,
668 typename InnerAction>
669 inline internal::WithArgsAction<InnerAction, k1, k2, k3, k4, k5, k6, k7, k8>
675 template <
int k1,
int k2,
int k3,
int k4,
int k5,
int k6,
int k7,
int k8,
676 int k9,
typename InnerAction>
677 inline internal::WithArgsAction<InnerAction, k1, k2, k3, k4, k5, k6, k7, k8, k9>
683 template <
int k1,
int k2,
int k3,
int k4,
int k5,
int k6,
int k7,
int k8,
684 int k9,
int k10,
typename InnerAction>
685 inline internal::WithArgsAction<InnerAction, k1, k2, k3, k4, k5, k6, k7, k8,
694 template <
typename Action1,
typename Action2>
695 inline internal::DoBothAction<Action1, Action2>
700 template <
typename Action1,
typename Action2,
typename Action3>
701 inline internal::DoBothAction<Action1, internal::DoBothAction<Action2,
707 template <
typename Action1,
typename Action2,
typename Action3,
709 inline internal::DoBothAction<Action1, internal::DoBothAction<Action2,
710 internal::DoBothAction<Action3, Action4> > >
711 DoAll(Action1 a1, Action2
a2, Action3 a3, Action4 a4) {
715 template <
typename Action1,
typename Action2,
typename Action3,
716 typename Action4,
typename Action5>
717 inline internal::DoBothAction<Action1, internal::DoBothAction<Action2,
718 internal::DoBothAction<Action3, internal::DoBothAction<Action4,
720 DoAll(Action1 a1, Action2
a2, Action3 a3, Action4 a4, Action5 a5) {
724 template <
typename Action1,
typename Action2,
typename Action3,
725 typename Action4,
typename Action5,
typename Action6>
726 inline internal::DoBothAction<Action1, internal::DoBothAction<Action2,
727 internal::DoBothAction<Action3, internal::DoBothAction<Action4,
728 internal::DoBothAction<Action5, Action6> > > > >
729 DoAll(Action1 a1, Action2
a2, Action3 a3, Action4 a4, Action5 a5, Action6 a6) {
733 template <
typename Action1,
typename Action2,
typename Action3,
734 typename Action4,
typename Action5,
typename Action6,
typename Action7>
735 inline internal::DoBothAction<Action1, internal::DoBothAction<Action2,
736 internal::DoBothAction<Action3, internal::DoBothAction<Action4,
737 internal::DoBothAction<Action5, internal::DoBothAction<Action6,
739 DoAll(Action1 a1, Action2
a2, Action3 a3, Action4 a4, Action5 a5, Action6 a6,
741 return DoAll(a1,
DoAll(a2, a3, a4, a5, a6, a7));
744 template <
typename Action1,
typename Action2,
typename Action3,
745 typename Action4,
typename Action5,
typename Action6,
typename Action7,
747 inline internal::DoBothAction<Action1, internal::DoBothAction<Action2,
748 internal::DoBothAction<Action3, internal::DoBothAction<Action4,
749 internal::DoBothAction<Action5, internal::DoBothAction<Action6,
750 internal::DoBothAction<Action7, Action8> > > > > > >
751 DoAll(Action1 a1, Action2
a2, Action3 a3, Action4 a4, Action5 a5, Action6 a6,
752 Action7 a7, Action8 a8) {
753 return DoAll(a1,
DoAll(a2, a3, a4, a5, a6, a7, a8));
756 template <
typename Action1,
typename Action2,
typename Action3,
757 typename Action4,
typename Action5,
typename Action6,
typename Action7,
758 typename Action8,
typename Action9>
759 inline internal::DoBothAction<Action1, internal::DoBothAction<Action2,
760 internal::DoBothAction<Action3, internal::DoBothAction<Action4,
761 internal::DoBothAction<Action5, internal::DoBothAction<Action6,
762 internal::DoBothAction<Action7, internal::DoBothAction<Action8,
763 Action9> > > > > > > >
764 DoAll(Action1 a1, Action2
a2, Action3 a3, Action4 a4, Action5 a5, Action6 a6,
765 Action7 a7, Action8 a8, Action9 a9) {
766 return DoAll(a1,
DoAll(a2, a3, a4, a5, a6, a7, a8, a9));
769 template <
typename Action1,
typename Action2,
typename Action3,
770 typename Action4,
typename Action5,
typename Action6,
typename Action7,
771 typename Action8,
typename Action9,
typename Action10>
772 inline internal::DoBothAction<Action1, internal::DoBothAction<Action2,
773 internal::DoBothAction<Action3, internal::DoBothAction<Action4,
774 internal::DoBothAction<Action5, internal::DoBothAction<Action6,
775 internal::DoBothAction<Action7, internal::DoBothAction<Action8,
776 internal::DoBothAction<Action9, Action10> > > > > > > > >
777 DoAll(Action1 a1, Action2
a2, Action3 a3, Action4 a4, Action5 a5, Action6 a6,
778 Action7 a7, Action8 a8, Action9 a9, Action10 a10) {
779 return DoAll(a1,
DoAll(a2, a3, a4, a5, a6, a7, a8, a9, a10));
881 #define GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_\
882 const args_type& args GTEST_ATTRIBUTE_UNUSED_, \
883 arg0_type arg0 GTEST_ATTRIBUTE_UNUSED_, \
884 arg1_type arg1 GTEST_ATTRIBUTE_UNUSED_, \
885 arg2_type arg2 GTEST_ATTRIBUTE_UNUSED_, \
886 arg3_type arg3 GTEST_ATTRIBUTE_UNUSED_, \
887 arg4_type arg4 GTEST_ATTRIBUTE_UNUSED_, \
888 arg5_type arg5 GTEST_ATTRIBUTE_UNUSED_, \
889 arg6_type arg6 GTEST_ATTRIBUTE_UNUSED_, \
890 arg7_type arg7 GTEST_ATTRIBUTE_UNUSED_, \
891 arg8_type arg8 GTEST_ATTRIBUTE_UNUSED_, \
892 arg9_type arg9 GTEST_ATTRIBUTE_UNUSED_
976 #define GMOCK_INTERNAL_DECL_HAS_1_TEMPLATE_PARAMS(kind0, name0) kind0 name0
977 #define GMOCK_INTERNAL_DECL_HAS_2_TEMPLATE_PARAMS(kind0, name0, kind1, \
978 name1) kind0 name0, kind1 name1
979 #define GMOCK_INTERNAL_DECL_HAS_3_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
980 kind2, name2) kind0 name0, kind1 name1, kind2 name2
981 #define GMOCK_INTERNAL_DECL_HAS_4_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
982 kind2, name2, kind3, name3) kind0 name0, kind1 name1, kind2 name2, \
984 #define GMOCK_INTERNAL_DECL_HAS_5_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
985 kind2, name2, kind3, name3, kind4, name4) kind0 name0, kind1 name1, \
986 kind2 name2, kind3 name3, kind4 name4
987 #define GMOCK_INTERNAL_DECL_HAS_6_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
988 kind2, name2, kind3, name3, kind4, name4, kind5, name5) kind0 name0, \
989 kind1 name1, kind2 name2, kind3 name3, kind4 name4, kind5 name5
990 #define GMOCK_INTERNAL_DECL_HAS_7_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
991 kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, \
992 name6) kind0 name0, kind1 name1, kind2 name2, kind3 name3, kind4 name4, \
993 kind5 name5, kind6 name6
994 #define GMOCK_INTERNAL_DECL_HAS_8_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
995 kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, name6, \
996 kind7, name7) kind0 name0, kind1 name1, kind2 name2, kind3 name3, \
997 kind4 name4, kind5 name5, kind6 name6, kind7 name7
998 #define GMOCK_INTERNAL_DECL_HAS_9_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
999 kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, name6, \
1000 kind7, name7, kind8, name8) kind0 name0, kind1 name1, kind2 name2, \
1001 kind3 name3, kind4 name4, kind5 name5, kind6 name6, kind7 name7, \
1003 #define GMOCK_INTERNAL_DECL_HAS_10_TEMPLATE_PARAMS(kind0, name0, kind1, \
1004 name1, kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, \
1005 name6, kind7, name7, kind8, name8, kind9, name9) kind0 name0, \
1006 kind1 name1, kind2 name2, kind3 name3, kind4 name4, kind5 name5, \
1007 kind6 name6, kind7 name7, kind8 name8, kind9 name9
1010 #define GMOCK_INTERNAL_LIST_HAS_1_TEMPLATE_PARAMS(kind0, name0) name0
1011 #define GMOCK_INTERNAL_LIST_HAS_2_TEMPLATE_PARAMS(kind0, name0, kind1, \
1013 #define GMOCK_INTERNAL_LIST_HAS_3_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
1014 kind2, name2) name0, name1, name2
1015 #define GMOCK_INTERNAL_LIST_HAS_4_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
1016 kind2, name2, kind3, name3) name0, name1, name2, name3
1017 #define GMOCK_INTERNAL_LIST_HAS_5_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
1018 kind2, name2, kind3, name3, kind4, name4) name0, name1, name2, name3, \
1020 #define GMOCK_INTERNAL_LIST_HAS_6_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
1021 kind2, name2, kind3, name3, kind4, name4, kind5, name5) name0, name1, \
1022 name2, name3, name4, name5
1023 #define GMOCK_INTERNAL_LIST_HAS_7_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
1024 kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, \
1025 name6) name0, name1, name2, name3, name4, name5, name6
1026 #define GMOCK_INTERNAL_LIST_HAS_8_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
1027 kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, name6, \
1028 kind7, name7) name0, name1, name2, name3, name4, name5, name6, name7
1029 #define GMOCK_INTERNAL_LIST_HAS_9_TEMPLATE_PARAMS(kind0, name0, kind1, name1, \
1030 kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, name6, \
1031 kind7, name7, kind8, name8) name0, name1, name2, name3, name4, name5, \
1033 #define GMOCK_INTERNAL_LIST_HAS_10_TEMPLATE_PARAMS(kind0, name0, kind1, \
1034 name1, kind2, name2, kind3, name3, kind4, name4, kind5, name5, kind6, \
1035 name6, kind7, name7, kind8, name8, kind9, name9) name0, name1, name2, \
1036 name3, name4, name5, name6, name7, name8, name9
1039 #define GMOCK_INTERNAL_DECL_TYPE_AND_0_VALUE_PARAMS()
1040 #define GMOCK_INTERNAL_DECL_TYPE_AND_1_VALUE_PARAMS(p0) , typename p0##_type
1041 #define GMOCK_INTERNAL_DECL_TYPE_AND_2_VALUE_PARAMS(p0, p1) , \
1042 typename p0##_type, typename p1##_type
1043 #define GMOCK_INTERNAL_DECL_TYPE_AND_3_VALUE_PARAMS(p0, p1, p2) , \
1044 typename p0##_type, typename p1##_type, typename p2##_type
1045 #define GMOCK_INTERNAL_DECL_TYPE_AND_4_VALUE_PARAMS(p0, p1, p2, p3) , \
1046 typename p0##_type, typename p1##_type, typename p2##_type, \
1048 #define GMOCK_INTERNAL_DECL_TYPE_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4) , \
1049 typename p0##_type, typename p1##_type, typename p2##_type, \
1050 typename p3##_type, typename p4##_type
1051 #define GMOCK_INTERNAL_DECL_TYPE_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5) , \
1052 typename p0##_type, typename p1##_type, typename p2##_type, \
1053 typename p3##_type, typename p4##_type, typename p5##_type
1054 #define GMOCK_INTERNAL_DECL_TYPE_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \
1055 p6) , typename p0##_type, typename p1##_type, typename p2##_type, \
1056 typename p3##_type, typename p4##_type, typename p5##_type, \
1058 #define GMOCK_INTERNAL_DECL_TYPE_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \
1059 p6, p7) , typename p0##_type, typename p1##_type, typename p2##_type, \
1060 typename p3##_type, typename p4##_type, typename p5##_type, \
1061 typename p6##_type, typename p7##_type
1062 #define GMOCK_INTERNAL_DECL_TYPE_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \
1063 p6, p7, p8) , typename p0##_type, typename p1##_type, typename p2##_type, \
1064 typename p3##_type, typename p4##_type, typename p5##_type, \
1065 typename p6##_type, typename p7##_type, typename p8##_type
1066 #define GMOCK_INTERNAL_DECL_TYPE_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \
1067 p6, p7, p8, p9) , typename p0##_type, typename p1##_type, \
1068 typename p2##_type, typename p3##_type, typename p4##_type, \
1069 typename p5##_type, typename p6##_type, typename p7##_type, \
1070 typename p8##_type, typename p9##_type
1073 #define GMOCK_INTERNAL_INIT_AND_0_VALUE_PARAMS()\
1075 #define GMOCK_INTERNAL_INIT_AND_1_VALUE_PARAMS(p0)\
1076 (p0##_type gmock_p0) : p0(gmock_p0)
1077 #define GMOCK_INTERNAL_INIT_AND_2_VALUE_PARAMS(p0, p1)\
1078 (p0##_type gmock_p0, p1##_type gmock_p1) : p0(gmock_p0), p1(gmock_p1)
1079 #define GMOCK_INTERNAL_INIT_AND_3_VALUE_PARAMS(p0, p1, p2)\
1080 (p0##_type gmock_p0, p1##_type gmock_p1, \
1081 p2##_type gmock_p2) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2)
1082 #define GMOCK_INTERNAL_INIT_AND_4_VALUE_PARAMS(p0, p1, p2, p3)\
1083 (p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
1084 p3##_type gmock_p3) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
1086 #define GMOCK_INTERNAL_INIT_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4)\
1087 (p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
1088 p3##_type gmock_p3, p4##_type gmock_p4) : p0(gmock_p0), p1(gmock_p1), \
1089 p2(gmock_p2), p3(gmock_p3), p4(gmock_p4)
1090 #define GMOCK_INTERNAL_INIT_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5)\
1091 (p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
1092 p3##_type gmock_p3, p4##_type gmock_p4, \
1093 p5##_type gmock_p5) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
1094 p3(gmock_p3), p4(gmock_p4), p5(gmock_p5)
1095 #define GMOCK_INTERNAL_INIT_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6)\
1096 (p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
1097 p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \
1098 p6##_type gmock_p6) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
1099 p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6)
1100 #define GMOCK_INTERNAL_INIT_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7)\
1101 (p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
1102 p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \
1103 p6##_type gmock_p6, p7##_type gmock_p7) : p0(gmock_p0), p1(gmock_p1), \
1104 p2(gmock_p2), p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), \
1106 #define GMOCK_INTERNAL_INIT_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
1108 (p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
1109 p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \
1110 p6##_type gmock_p6, p7##_type gmock_p7, \
1111 p8##_type gmock_p8) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
1112 p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), p7(gmock_p7), \
1114 #define GMOCK_INTERNAL_INIT_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
1116 (p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
1117 p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \
1118 p6##_type gmock_p6, p7##_type gmock_p7, p8##_type gmock_p8, \
1119 p9##_type gmock_p9) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
1120 p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), p7(gmock_p7), \
1121 p8(gmock_p8), p9(gmock_p9)
1124 #define GMOCK_INTERNAL_DEFN_AND_0_VALUE_PARAMS()
1125 #define GMOCK_INTERNAL_DEFN_AND_1_VALUE_PARAMS(p0) p0##_type p0;
1126 #define GMOCK_INTERNAL_DEFN_AND_2_VALUE_PARAMS(p0, p1) p0##_type p0; \
1128 #define GMOCK_INTERNAL_DEFN_AND_3_VALUE_PARAMS(p0, p1, p2) p0##_type p0; \
1129 p1##_type p1; p2##_type p2;
1130 #define GMOCK_INTERNAL_DEFN_AND_4_VALUE_PARAMS(p0, p1, p2, p3) p0##_type p0; \
1131 p1##_type p1; p2##_type p2; p3##_type p3;
1132 #define GMOCK_INTERNAL_DEFN_AND_5_VALUE_PARAMS(p0, p1, p2, p3, \
1133 p4) p0##_type p0; p1##_type p1; p2##_type p2; p3##_type p3; p4##_type p4;
1134 #define GMOCK_INTERNAL_DEFN_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, \
1135 p5) p0##_type p0; p1##_type p1; p2##_type p2; p3##_type p3; p4##_type p4; \
1137 #define GMOCK_INTERNAL_DEFN_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \
1138 p6) p0##_type p0; p1##_type p1; p2##_type p2; p3##_type p3; p4##_type p4; \
1139 p5##_type p5; p6##_type p6;
1140 #define GMOCK_INTERNAL_DEFN_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
1141 p7) p0##_type p0; p1##_type p1; p2##_type p2; p3##_type p3; p4##_type p4; \
1142 p5##_type p5; p6##_type p6; p7##_type p7;
1143 #define GMOCK_INTERNAL_DEFN_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
1144 p7, p8) p0##_type p0; p1##_type p1; p2##_type p2; p3##_type p3; \
1145 p4##_type p4; p5##_type p5; p6##_type p6; p7##_type p7; p8##_type p8;
1146 #define GMOCK_INTERNAL_DEFN_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
1147 p7, p8, p9) p0##_type p0; p1##_type p1; p2##_type p2; p3##_type p3; \
1148 p4##_type p4; p5##_type p5; p6##_type p6; p7##_type p7; p8##_type p8; \
1152 #define GMOCK_INTERNAL_LIST_AND_0_VALUE_PARAMS()
1153 #define GMOCK_INTERNAL_LIST_AND_1_VALUE_PARAMS(p0) p0
1154 #define GMOCK_INTERNAL_LIST_AND_2_VALUE_PARAMS(p0, p1) p0, p1
1155 #define GMOCK_INTERNAL_LIST_AND_3_VALUE_PARAMS(p0, p1, p2) p0, p1, p2
1156 #define GMOCK_INTERNAL_LIST_AND_4_VALUE_PARAMS(p0, p1, p2, p3) p0, p1, p2, p3
1157 #define GMOCK_INTERNAL_LIST_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4) p0, p1, \
1159 #define GMOCK_INTERNAL_LIST_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5) p0, \
1161 #define GMOCK_INTERNAL_LIST_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \
1162 p6) p0, p1, p2, p3, p4, p5, p6
1163 #define GMOCK_INTERNAL_LIST_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
1164 p7) p0, p1, p2, p3, p4, p5, p6, p7
1165 #define GMOCK_INTERNAL_LIST_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
1166 p7, p8) p0, p1, p2, p3, p4, p5, p6, p7, p8
1167 #define GMOCK_INTERNAL_LIST_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
1168 p7, p8, p9) p0, p1, p2, p3, p4, p5, p6, p7, p8, p9
1171 #define GMOCK_INTERNAL_LIST_TYPE_AND_0_VALUE_PARAMS()
1172 #define GMOCK_INTERNAL_LIST_TYPE_AND_1_VALUE_PARAMS(p0) , p0##_type
1173 #define GMOCK_INTERNAL_LIST_TYPE_AND_2_VALUE_PARAMS(p0, p1) , p0##_type, \
1175 #define GMOCK_INTERNAL_LIST_TYPE_AND_3_VALUE_PARAMS(p0, p1, p2) , p0##_type, \
1176 p1##_type, p2##_type
1177 #define GMOCK_INTERNAL_LIST_TYPE_AND_4_VALUE_PARAMS(p0, p1, p2, p3) , \
1178 p0##_type, p1##_type, p2##_type, p3##_type
1179 #define GMOCK_INTERNAL_LIST_TYPE_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4) , \
1180 p0##_type, p1##_type, p2##_type, p3##_type, p4##_type
1181 #define GMOCK_INTERNAL_LIST_TYPE_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5) , \
1182 p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, p5##_type
1183 #define GMOCK_INTERNAL_LIST_TYPE_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \
1184 p6) , p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, p5##_type, \
1186 #define GMOCK_INTERNAL_LIST_TYPE_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \
1187 p6, p7) , p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \
1188 p5##_type, p6##_type, p7##_type
1189 #define GMOCK_INTERNAL_LIST_TYPE_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \
1190 p6, p7, p8) , p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \
1191 p5##_type, p6##_type, p7##_type, p8##_type
1192 #define GMOCK_INTERNAL_LIST_TYPE_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \
1193 p6, p7, p8, p9) , p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \
1194 p5##_type, p6##_type, p7##_type, p8##_type, p9##_type
1197 #define GMOCK_INTERNAL_DECL_AND_0_VALUE_PARAMS()
1198 #define GMOCK_INTERNAL_DECL_AND_1_VALUE_PARAMS(p0) p0##_type p0
1199 #define GMOCK_INTERNAL_DECL_AND_2_VALUE_PARAMS(p0, p1) p0##_type p0, \
1201 #define GMOCK_INTERNAL_DECL_AND_3_VALUE_PARAMS(p0, p1, p2) p0##_type p0, \
1202 p1##_type p1, p2##_type p2
1203 #define GMOCK_INTERNAL_DECL_AND_4_VALUE_PARAMS(p0, p1, p2, p3) p0##_type p0, \
1204 p1##_type p1, p2##_type p2, p3##_type p3
1205 #define GMOCK_INTERNAL_DECL_AND_5_VALUE_PARAMS(p0, p1, p2, p3, \
1206 p4) p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, p4##_type p4
1207 #define GMOCK_INTERNAL_DECL_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, \
1208 p5) p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, p4##_type p4, \
1210 #define GMOCK_INTERNAL_DECL_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, \
1211 p6) p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, p4##_type p4, \
1212 p5##_type p5, p6##_type p6
1213 #define GMOCK_INTERNAL_DECL_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
1214 p7) p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, p4##_type p4, \
1215 p5##_type p5, p6##_type p6, p7##_type p7
1216 #define GMOCK_INTERNAL_DECL_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
1217 p7, p8) p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, \
1218 p4##_type p4, p5##_type p5, p6##_type p6, p7##_type p7, p8##_type p8
1219 #define GMOCK_INTERNAL_DECL_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
1220 p7, p8, p9) p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, \
1221 p4##_type p4, p5##_type p5, p6##_type p6, p7##_type p7, p8##_type p8, \
1225 #define GMOCK_INTERNAL_COUNT_AND_0_VALUE_PARAMS()
1226 #define GMOCK_INTERNAL_COUNT_AND_1_VALUE_PARAMS(p0) P
1227 #define GMOCK_INTERNAL_COUNT_AND_2_VALUE_PARAMS(p0, p1) P2
1228 #define GMOCK_INTERNAL_COUNT_AND_3_VALUE_PARAMS(p0, p1, p2) P3
1229 #define GMOCK_INTERNAL_COUNT_AND_4_VALUE_PARAMS(p0, p1, p2, p3) P4
1230 #define GMOCK_INTERNAL_COUNT_AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4) P5
1231 #define GMOCK_INTERNAL_COUNT_AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5) P6
1232 #define GMOCK_INTERNAL_COUNT_AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6) P7
1233 #define GMOCK_INTERNAL_COUNT_AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
1235 #define GMOCK_INTERNAL_COUNT_AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
1237 #define GMOCK_INTERNAL_COUNT_AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, \
1241 #define GMOCK_ACTION_CLASS_(name, value_params)\
1242 GTEST_CONCAT_TOKEN_(name##Action, GMOCK_INTERNAL_COUNT_##value_params)
1244 #define ACTION_TEMPLATE(name, template_params, value_params)\
1245 template <GMOCK_INTERNAL_DECL_##template_params\
1246 GMOCK_INTERNAL_DECL_TYPE_##value_params>\
1247 class GMOCK_ACTION_CLASS_(name, value_params) {\
1249 explicit GMOCK_ACTION_CLASS_(name, value_params)\
1250 GMOCK_INTERNAL_INIT_##value_params {}\
1251 template <typename F>\
1252 class gmock_Impl : public ::testing::ActionInterface<F> {\
1254 typedef F function_type;\
1255 typedef typename ::testing::internal::Function<F>::Result return_type;\
1256 typedef typename ::testing::internal::Function<F>::ArgumentTuple\
1258 explicit gmock_Impl GMOCK_INTERNAL_INIT_##value_params {}\
1259 virtual return_type Perform(const args_type& args) {\
1260 return ::testing::internal::ActionHelper<return_type, gmock_Impl>::\
1261 Perform(this, args);\
1263 template <typename arg0_type, typename arg1_type, typename arg2_type, \
1264 typename arg3_type, typename arg4_type, typename arg5_type, \
1265 typename arg6_type, typename arg7_type, typename arg8_type, \
1266 typename arg9_type>\
1267 return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \
1268 arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \
1269 arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \
1270 arg9_type arg9) const;\
1271 GMOCK_INTERNAL_DEFN_##value_params\
1273 GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
1275 template <typename F> operator ::testing::Action<F>() const {\
1276 return ::testing::Action<F>(\
1277 new gmock_Impl<F>(GMOCK_INTERNAL_LIST_##value_params));\
1279 GMOCK_INTERNAL_DEFN_##value_params\
1281 GTEST_DISALLOW_ASSIGN_(GMOCK_ACTION_CLASS_(name, value_params));\
1283 template <GMOCK_INTERNAL_DECL_##template_params\
1284 GMOCK_INTERNAL_DECL_TYPE_##value_params>\
1285 inline GMOCK_ACTION_CLASS_(name, value_params)<\
1286 GMOCK_INTERNAL_LIST_##template_params\
1287 GMOCK_INTERNAL_LIST_TYPE_##value_params> name(\
1288 GMOCK_INTERNAL_DECL_##value_params) {\
1289 return GMOCK_ACTION_CLASS_(name, value_params)<\
1290 GMOCK_INTERNAL_LIST_##template_params\
1291 GMOCK_INTERNAL_LIST_TYPE_##value_params>(\
1292 GMOCK_INTERNAL_LIST_##value_params);\
1294 template <GMOCK_INTERNAL_DECL_##template_params\
1295 GMOCK_INTERNAL_DECL_TYPE_##value_params>\
1296 template <typename F>\
1297 template <typename arg0_type, typename arg1_type, typename arg2_type, \
1298 typename arg3_type, typename arg4_type, typename arg5_type, \
1299 typename arg6_type, typename arg7_type, typename arg8_type, \
1300 typename arg9_type>\
1301 typename ::testing::internal::Function<F>::Result\
1302 GMOCK_ACTION_CLASS_(name, value_params)<\
1303 GMOCK_INTERNAL_LIST_##template_params\
1304 GMOCK_INTERNAL_LIST_TYPE_##value_params>::gmock_Impl<F>::\
1306 GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
1308 #define ACTION(name)\
1309 class name##Action {\
1312 template <typename F>\
1313 class gmock_Impl : public ::testing::ActionInterface<F> {\
1315 typedef F function_type;\
1316 typedef typename ::testing::internal::Function<F>::Result return_type;\
1317 typedef typename ::testing::internal::Function<F>::ArgumentTuple\
1320 virtual return_type Perform(const args_type& args) {\
1321 return ::testing::internal::ActionHelper<return_type, gmock_Impl>::\
1322 Perform(this, args);\
1324 template <typename arg0_type, typename arg1_type, typename arg2_type, \
1325 typename arg3_type, typename arg4_type, typename arg5_type, \
1326 typename arg6_type, typename arg7_type, typename arg8_type, \
1327 typename arg9_type>\
1328 return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \
1329 arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \
1330 arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \
1331 arg9_type arg9) const;\
1333 GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
1335 template <typename F> operator ::testing::Action<F>() const {\
1336 return ::testing::Action<F>(new gmock_Impl<F>());\
1339 GTEST_DISALLOW_ASSIGN_(name##Action);\
1341 inline name##Action name() {\
1342 return name##Action();\
1344 template <typename F>\
1345 template <typename arg0_type, typename arg1_type, typename arg2_type, \
1346 typename arg3_type, typename arg4_type, typename arg5_type, \
1347 typename arg6_type, typename arg7_type, typename arg8_type, \
1348 typename arg9_type>\
1349 typename ::testing::internal::Function<F>::Result\
1350 name##Action::gmock_Impl<F>::gmock_PerformImpl(\
1351 GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
1353 #define ACTION_P(name, p0)\
1354 template <typename p0##_type>\
1355 class name##ActionP {\
1357 explicit name##ActionP(p0##_type gmock_p0) : p0(gmock_p0) {}\
1358 template <typename F>\
1359 class gmock_Impl : public ::testing::ActionInterface<F> {\
1361 typedef F function_type;\
1362 typedef typename ::testing::internal::Function<F>::Result return_type;\
1363 typedef typename ::testing::internal::Function<F>::ArgumentTuple\
1365 explicit gmock_Impl(p0##_type gmock_p0) : p0(gmock_p0) {}\
1366 virtual return_type Perform(const args_type& args) {\
1367 return ::testing::internal::ActionHelper<return_type, gmock_Impl>::\
1368 Perform(this, args);\
1370 template <typename arg0_type, typename arg1_type, typename arg2_type, \
1371 typename arg3_type, typename arg4_type, typename arg5_type, \
1372 typename arg6_type, typename arg7_type, typename arg8_type, \
1373 typename arg9_type>\
1374 return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \
1375 arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \
1376 arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \
1377 arg9_type arg9) const;\
1380 GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
1382 template <typename F> operator ::testing::Action<F>() const {\
1383 return ::testing::Action<F>(new gmock_Impl<F>(p0));\
1387 GTEST_DISALLOW_ASSIGN_(name##ActionP);\
1389 template <typename p0##_type>\
1390 inline name##ActionP<p0##_type> name(p0##_type p0) {\
1391 return name##ActionP<p0##_type>(p0);\
1393 template <typename p0##_type>\
1394 template <typename F>\
1395 template <typename arg0_type, typename arg1_type, typename arg2_type, \
1396 typename arg3_type, typename arg4_type, typename arg5_type, \
1397 typename arg6_type, typename arg7_type, typename arg8_type, \
1398 typename arg9_type>\
1399 typename ::testing::internal::Function<F>::Result\
1400 name##ActionP<p0##_type>::gmock_Impl<F>::gmock_PerformImpl(\
1401 GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
1403 #define ACTION_P2(name, p0, p1)\
1404 template <typename p0##_type, typename p1##_type>\
1405 class name##ActionP2 {\
1407 name##ActionP2(p0##_type gmock_p0, p1##_type gmock_p1) : p0(gmock_p0), \
1409 template <typename F>\
1410 class gmock_Impl : public ::testing::ActionInterface<F> {\
1412 typedef F function_type;\
1413 typedef typename ::testing::internal::Function<F>::Result return_type;\
1414 typedef typename ::testing::internal::Function<F>::ArgumentTuple\
1416 gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1) : p0(gmock_p0), \
1418 virtual return_type Perform(const args_type& args) {\
1419 return ::testing::internal::ActionHelper<return_type, gmock_Impl>::\
1420 Perform(this, args);\
1422 template <typename arg0_type, typename arg1_type, typename arg2_type, \
1423 typename arg3_type, typename arg4_type, typename arg5_type, \
1424 typename arg6_type, typename arg7_type, typename arg8_type, \
1425 typename arg9_type>\
1426 return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \
1427 arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \
1428 arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \
1429 arg9_type arg9) const;\
1433 GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
1435 template <typename F> operator ::testing::Action<F>() const {\
1436 return ::testing::Action<F>(new gmock_Impl<F>(p0, p1));\
1441 GTEST_DISALLOW_ASSIGN_(name##ActionP2);\
1443 template <typename p0##_type, typename p1##_type>\
1444 inline name##ActionP2<p0##_type, p1##_type> name(p0##_type p0, \
1446 return name##ActionP2<p0##_type, p1##_type>(p0, p1);\
1448 template <typename p0##_type, typename p1##_type>\
1449 template <typename F>\
1450 template <typename arg0_type, typename arg1_type, typename arg2_type, \
1451 typename arg3_type, typename arg4_type, typename arg5_type, \
1452 typename arg6_type, typename arg7_type, typename arg8_type, \
1453 typename arg9_type>\
1454 typename ::testing::internal::Function<F>::Result\
1455 name##ActionP2<p0##_type, p1##_type>::gmock_Impl<F>::gmock_PerformImpl(\
1456 GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
1458 #define ACTION_P3(name, p0, p1, p2)\
1459 template <typename p0##_type, typename p1##_type, typename p2##_type>\
1460 class name##ActionP3 {\
1462 name##ActionP3(p0##_type gmock_p0, p1##_type gmock_p1, \
1463 p2##_type gmock_p2) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2) {}\
1464 template <typename F>\
1465 class gmock_Impl : public ::testing::ActionInterface<F> {\
1467 typedef F function_type;\
1468 typedef typename ::testing::internal::Function<F>::Result return_type;\
1469 typedef typename ::testing::internal::Function<F>::ArgumentTuple\
1471 gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, \
1472 p2##_type gmock_p2) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2) {}\
1473 virtual return_type Perform(const args_type& args) {\
1474 return ::testing::internal::ActionHelper<return_type, gmock_Impl>::\
1475 Perform(this, args);\
1477 template <typename arg0_type, typename arg1_type, typename arg2_type, \
1478 typename arg3_type, typename arg4_type, typename arg5_type, \
1479 typename arg6_type, typename arg7_type, typename arg8_type, \
1480 typename arg9_type>\
1481 return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \
1482 arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \
1483 arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \
1484 arg9_type arg9) const;\
1489 GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
1491 template <typename F> operator ::testing::Action<F>() const {\
1492 return ::testing::Action<F>(new gmock_Impl<F>(p0, p1, p2));\
1498 GTEST_DISALLOW_ASSIGN_(name##ActionP3);\
1500 template <typename p0##_type, typename p1##_type, typename p2##_type>\
1501 inline name##ActionP3<p0##_type, p1##_type, p2##_type> name(p0##_type p0, \
1502 p1##_type p1, p2##_type p2) {\
1503 return name##ActionP3<p0##_type, p1##_type, p2##_type>(p0, p1, p2);\
1505 template <typename p0##_type, typename p1##_type, typename p2##_type>\
1506 template <typename F>\
1507 template <typename arg0_type, typename arg1_type, typename arg2_type, \
1508 typename arg3_type, typename arg4_type, typename arg5_type, \
1509 typename arg6_type, typename arg7_type, typename arg8_type, \
1510 typename arg9_type>\
1511 typename ::testing::internal::Function<F>::Result\
1512 name##ActionP3<p0##_type, p1##_type, \
1513 p2##_type>::gmock_Impl<F>::gmock_PerformImpl(\
1514 GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
1516 #define ACTION_P4(name, p0, p1, p2, p3)\
1517 template <typename p0##_type, typename p1##_type, typename p2##_type, \
1518 typename p3##_type>\
1519 class name##ActionP4 {\
1521 name##ActionP4(p0##_type gmock_p0, p1##_type gmock_p1, \
1522 p2##_type gmock_p2, p3##_type gmock_p3) : p0(gmock_p0), p1(gmock_p1), \
1523 p2(gmock_p2), p3(gmock_p3) {}\
1524 template <typename F>\
1525 class gmock_Impl : public ::testing::ActionInterface<F> {\
1527 typedef F function_type;\
1528 typedef typename ::testing::internal::Function<F>::Result return_type;\
1529 typedef typename ::testing::internal::Function<F>::ArgumentTuple\
1531 gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
1532 p3##_type gmock_p3) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
1534 virtual return_type Perform(const args_type& args) {\
1535 return ::testing::internal::ActionHelper<return_type, gmock_Impl>::\
1536 Perform(this, args);\
1538 template <typename arg0_type, typename arg1_type, typename arg2_type, \
1539 typename arg3_type, typename arg4_type, typename arg5_type, \
1540 typename arg6_type, typename arg7_type, typename arg8_type, \
1541 typename arg9_type>\
1542 return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \
1543 arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \
1544 arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \
1545 arg9_type arg9) const;\
1551 GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
1553 template <typename F> operator ::testing::Action<F>() const {\
1554 return ::testing::Action<F>(new gmock_Impl<F>(p0, p1, p2, p3));\
1561 GTEST_DISALLOW_ASSIGN_(name##ActionP4);\
1563 template <typename p0##_type, typename p1##_type, typename p2##_type, \
1564 typename p3##_type>\
1565 inline name##ActionP4<p0##_type, p1##_type, p2##_type, \
1566 p3##_type> name(p0##_type p0, p1##_type p1, p2##_type p2, \
1568 return name##ActionP4<p0##_type, p1##_type, p2##_type, p3##_type>(p0, p1, \
1571 template <typename p0##_type, typename p1##_type, typename p2##_type, \
1572 typename p3##_type>\
1573 template <typename F>\
1574 template <typename arg0_type, typename arg1_type, typename arg2_type, \
1575 typename arg3_type, typename arg4_type, typename arg5_type, \
1576 typename arg6_type, typename arg7_type, typename arg8_type, \
1577 typename arg9_type>\
1578 typename ::testing::internal::Function<F>::Result\
1579 name##ActionP4<p0##_type, p1##_type, p2##_type, \
1580 p3##_type>::gmock_Impl<F>::gmock_PerformImpl(\
1581 GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
1583 #define ACTION_P5(name, p0, p1, p2, p3, p4)\
1584 template <typename p0##_type, typename p1##_type, typename p2##_type, \
1585 typename p3##_type, typename p4##_type>\
1586 class name##ActionP5 {\
1588 name##ActionP5(p0##_type gmock_p0, p1##_type gmock_p1, \
1589 p2##_type gmock_p2, p3##_type gmock_p3, \
1590 p4##_type gmock_p4) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
1591 p3(gmock_p3), p4(gmock_p4) {}\
1592 template <typename F>\
1593 class gmock_Impl : public ::testing::ActionInterface<F> {\
1595 typedef F function_type;\
1596 typedef typename ::testing::internal::Function<F>::Result return_type;\
1597 typedef typename ::testing::internal::Function<F>::ArgumentTuple\
1599 gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
1600 p3##_type gmock_p3, p4##_type gmock_p4) : p0(gmock_p0), \
1601 p1(gmock_p1), p2(gmock_p2), p3(gmock_p3), p4(gmock_p4) {}\
1602 virtual return_type Perform(const args_type& args) {\
1603 return ::testing::internal::ActionHelper<return_type, gmock_Impl>::\
1604 Perform(this, args);\
1606 template <typename arg0_type, typename arg1_type, typename arg2_type, \
1607 typename arg3_type, typename arg4_type, typename arg5_type, \
1608 typename arg6_type, typename arg7_type, typename arg8_type, \
1609 typename arg9_type>\
1610 return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \
1611 arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \
1612 arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \
1613 arg9_type arg9) const;\
1620 GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
1622 template <typename F> operator ::testing::Action<F>() const {\
1623 return ::testing::Action<F>(new gmock_Impl<F>(p0, p1, p2, p3, p4));\
1631 GTEST_DISALLOW_ASSIGN_(name##ActionP5);\
1633 template <typename p0##_type, typename p1##_type, typename p2##_type, \
1634 typename p3##_type, typename p4##_type>\
1635 inline name##ActionP5<p0##_type, p1##_type, p2##_type, p3##_type, \
1636 p4##_type> name(p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, \
1638 return name##ActionP5<p0##_type, p1##_type, p2##_type, p3##_type, \
1639 p4##_type>(p0, p1, p2, p3, p4);\
1641 template <typename p0##_type, typename p1##_type, typename p2##_type, \
1642 typename p3##_type, typename p4##_type>\
1643 template <typename F>\
1644 template <typename arg0_type, typename arg1_type, typename arg2_type, \
1645 typename arg3_type, typename arg4_type, typename arg5_type, \
1646 typename arg6_type, typename arg7_type, typename arg8_type, \
1647 typename arg9_type>\
1648 typename ::testing::internal::Function<F>::Result\
1649 name##ActionP5<p0##_type, p1##_type, p2##_type, p3##_type, \
1650 p4##_type>::gmock_Impl<F>::gmock_PerformImpl(\
1651 GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
1653 #define ACTION_P6(name, p0, p1, p2, p3, p4, p5)\
1654 template <typename p0##_type, typename p1##_type, typename p2##_type, \
1655 typename p3##_type, typename p4##_type, typename p5##_type>\
1656 class name##ActionP6 {\
1658 name##ActionP6(p0##_type gmock_p0, p1##_type gmock_p1, \
1659 p2##_type gmock_p2, p3##_type gmock_p3, p4##_type gmock_p4, \
1660 p5##_type gmock_p5) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
1661 p3(gmock_p3), p4(gmock_p4), p5(gmock_p5) {}\
1662 template <typename F>\
1663 class gmock_Impl : public ::testing::ActionInterface<F> {\
1665 typedef F function_type;\
1666 typedef typename ::testing::internal::Function<F>::Result return_type;\
1667 typedef typename ::testing::internal::Function<F>::ArgumentTuple\
1669 gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
1670 p3##_type gmock_p3, p4##_type gmock_p4, \
1671 p5##_type gmock_p5) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
1672 p3(gmock_p3), p4(gmock_p4), p5(gmock_p5) {}\
1673 virtual return_type Perform(const args_type& args) {\
1674 return ::testing::internal::ActionHelper<return_type, gmock_Impl>::\
1675 Perform(this, args);\
1677 template <typename arg0_type, typename arg1_type, typename arg2_type, \
1678 typename arg3_type, typename arg4_type, typename arg5_type, \
1679 typename arg6_type, typename arg7_type, typename arg8_type, \
1680 typename arg9_type>\
1681 return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \
1682 arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \
1683 arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \
1684 arg9_type arg9) const;\
1692 GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
1694 template <typename F> operator ::testing::Action<F>() const {\
1695 return ::testing::Action<F>(new gmock_Impl<F>(p0, p1, p2, p3, p4, p5));\
1704 GTEST_DISALLOW_ASSIGN_(name##ActionP6);\
1706 template <typename p0##_type, typename p1##_type, typename p2##_type, \
1707 typename p3##_type, typename p4##_type, typename p5##_type>\
1708 inline name##ActionP6<p0##_type, p1##_type, p2##_type, p3##_type, \
1709 p4##_type, p5##_type> name(p0##_type p0, p1##_type p1, p2##_type p2, \
1710 p3##_type p3, p4##_type p4, p5##_type p5) {\
1711 return name##ActionP6<p0##_type, p1##_type, p2##_type, p3##_type, \
1712 p4##_type, p5##_type>(p0, p1, p2, p3, p4, p5);\
1714 template <typename p0##_type, typename p1##_type, typename p2##_type, \
1715 typename p3##_type, typename p4##_type, typename p5##_type>\
1716 template <typename F>\
1717 template <typename arg0_type, typename arg1_type, typename arg2_type, \
1718 typename arg3_type, typename arg4_type, typename arg5_type, \
1719 typename arg6_type, typename arg7_type, typename arg8_type, \
1720 typename arg9_type>\
1721 typename ::testing::internal::Function<F>::Result\
1722 name##ActionP6<p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \
1723 p5##_type>::gmock_Impl<F>::gmock_PerformImpl(\
1724 GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
1726 #define ACTION_P7(name, p0, p1, p2, p3, p4, p5, p6)\
1727 template <typename p0##_type, typename p1##_type, typename p2##_type, \
1728 typename p3##_type, typename p4##_type, typename p5##_type, \
1729 typename p6##_type>\
1730 class name##ActionP7 {\
1732 name##ActionP7(p0##_type gmock_p0, p1##_type gmock_p1, \
1733 p2##_type gmock_p2, p3##_type gmock_p3, p4##_type gmock_p4, \
1734 p5##_type gmock_p5, p6##_type gmock_p6) : p0(gmock_p0), p1(gmock_p1), \
1735 p2(gmock_p2), p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), \
1737 template <typename F>\
1738 class gmock_Impl : public ::testing::ActionInterface<F> {\
1740 typedef F function_type;\
1741 typedef typename ::testing::internal::Function<F>::Result return_type;\
1742 typedef typename ::testing::internal::Function<F>::ArgumentTuple\
1744 gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
1745 p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \
1746 p6##_type gmock_p6) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
1747 p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6) {}\
1748 virtual return_type Perform(const args_type& args) {\
1749 return ::testing::internal::ActionHelper<return_type, gmock_Impl>::\
1750 Perform(this, args);\
1752 template <typename arg0_type, typename arg1_type, typename arg2_type, \
1753 typename arg3_type, typename arg4_type, typename arg5_type, \
1754 typename arg6_type, typename arg7_type, typename arg8_type, \
1755 typename arg9_type>\
1756 return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \
1757 arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \
1758 arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \
1759 arg9_type arg9) const;\
1768 GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
1770 template <typename F> operator ::testing::Action<F>() const {\
1771 return ::testing::Action<F>(new gmock_Impl<F>(p0, p1, p2, p3, p4, p5, \
1782 GTEST_DISALLOW_ASSIGN_(name##ActionP7);\
1784 template <typename p0##_type, typename p1##_type, typename p2##_type, \
1785 typename p3##_type, typename p4##_type, typename p5##_type, \
1786 typename p6##_type>\
1787 inline name##ActionP7<p0##_type, p1##_type, p2##_type, p3##_type, \
1788 p4##_type, p5##_type, p6##_type> name(p0##_type p0, p1##_type p1, \
1789 p2##_type p2, p3##_type p3, p4##_type p4, p5##_type p5, \
1791 return name##ActionP7<p0##_type, p1##_type, p2##_type, p3##_type, \
1792 p4##_type, p5##_type, p6##_type>(p0, p1, p2, p3, p4, p5, p6);\
1794 template <typename p0##_type, typename p1##_type, typename p2##_type, \
1795 typename p3##_type, typename p4##_type, typename p5##_type, \
1796 typename p6##_type>\
1797 template <typename F>\
1798 template <typename arg0_type, typename arg1_type, typename arg2_type, \
1799 typename arg3_type, typename arg4_type, typename arg5_type, \
1800 typename arg6_type, typename arg7_type, typename arg8_type, \
1801 typename arg9_type>\
1802 typename ::testing::internal::Function<F>::Result\
1803 name##ActionP7<p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \
1804 p5##_type, p6##_type>::gmock_Impl<F>::gmock_PerformImpl(\
1805 GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
1807 #define ACTION_P8(name, p0, p1, p2, p3, p4, p5, p6, p7)\
1808 template <typename p0##_type, typename p1##_type, typename p2##_type, \
1809 typename p3##_type, typename p4##_type, typename p5##_type, \
1810 typename p6##_type, typename p7##_type>\
1811 class name##ActionP8 {\
1813 name##ActionP8(p0##_type gmock_p0, p1##_type gmock_p1, \
1814 p2##_type gmock_p2, p3##_type gmock_p3, p4##_type gmock_p4, \
1815 p5##_type gmock_p5, p6##_type gmock_p6, \
1816 p7##_type gmock_p7) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
1817 p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), \
1819 template <typename F>\
1820 class gmock_Impl : public ::testing::ActionInterface<F> {\
1822 typedef F function_type;\
1823 typedef typename ::testing::internal::Function<F>::Result return_type;\
1824 typedef typename ::testing::internal::Function<F>::ArgumentTuple\
1826 gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
1827 p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \
1828 p6##_type gmock_p6, p7##_type gmock_p7) : p0(gmock_p0), \
1829 p1(gmock_p1), p2(gmock_p2), p3(gmock_p3), p4(gmock_p4), \
1830 p5(gmock_p5), p6(gmock_p6), p7(gmock_p7) {}\
1831 virtual return_type Perform(const args_type& args) {\
1832 return ::testing::internal::ActionHelper<return_type, gmock_Impl>::\
1833 Perform(this, args);\
1835 template <typename arg0_type, typename arg1_type, typename arg2_type, \
1836 typename arg3_type, typename arg4_type, typename arg5_type, \
1837 typename arg6_type, typename arg7_type, typename arg8_type, \
1838 typename arg9_type>\
1839 return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \
1840 arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \
1841 arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \
1842 arg9_type arg9) const;\
1852 GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
1854 template <typename F> operator ::testing::Action<F>() const {\
1855 return ::testing::Action<F>(new gmock_Impl<F>(p0, p1, p2, p3, p4, p5, \
1867 GTEST_DISALLOW_ASSIGN_(name##ActionP8);\
1869 template <typename p0##_type, typename p1##_type, typename p2##_type, \
1870 typename p3##_type, typename p4##_type, typename p5##_type, \
1871 typename p6##_type, typename p7##_type>\
1872 inline name##ActionP8<p0##_type, p1##_type, p2##_type, p3##_type, \
1873 p4##_type, p5##_type, p6##_type, p7##_type> name(p0##_type p0, \
1874 p1##_type p1, p2##_type p2, p3##_type p3, p4##_type p4, p5##_type p5, \
1875 p6##_type p6, p7##_type p7) {\
1876 return name##ActionP8<p0##_type, p1##_type, p2##_type, p3##_type, \
1877 p4##_type, p5##_type, p6##_type, p7##_type>(p0, p1, p2, p3, p4, p5, \
1880 template <typename p0##_type, typename p1##_type, typename p2##_type, \
1881 typename p3##_type, typename p4##_type, typename p5##_type, \
1882 typename p6##_type, typename p7##_type>\
1883 template <typename F>\
1884 template <typename arg0_type, typename arg1_type, typename arg2_type, \
1885 typename arg3_type, typename arg4_type, typename arg5_type, \
1886 typename arg6_type, typename arg7_type, typename arg8_type, \
1887 typename arg9_type>\
1888 typename ::testing::internal::Function<F>::Result\
1889 name##ActionP8<p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \
1890 p5##_type, p6##_type, \
1891 p7##_type>::gmock_Impl<F>::gmock_PerformImpl(\
1892 GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
1894 #define ACTION_P9(name, p0, p1, p2, p3, p4, p5, p6, p7, p8)\
1895 template <typename p0##_type, typename p1##_type, typename p2##_type, \
1896 typename p3##_type, typename p4##_type, typename p5##_type, \
1897 typename p6##_type, typename p7##_type, typename p8##_type>\
1898 class name##ActionP9 {\
1900 name##ActionP9(p0##_type gmock_p0, p1##_type gmock_p1, \
1901 p2##_type gmock_p2, p3##_type gmock_p3, p4##_type gmock_p4, \
1902 p5##_type gmock_p5, p6##_type gmock_p6, p7##_type gmock_p7, \
1903 p8##_type gmock_p8) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
1904 p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), p7(gmock_p7), \
1906 template <typename F>\
1907 class gmock_Impl : public ::testing::ActionInterface<F> {\
1909 typedef F function_type;\
1910 typedef typename ::testing::internal::Function<F>::Result return_type;\
1911 typedef typename ::testing::internal::Function<F>::ArgumentTuple\
1913 gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
1914 p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \
1915 p6##_type gmock_p6, p7##_type gmock_p7, \
1916 p8##_type gmock_p8) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
1917 p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), \
1918 p7(gmock_p7), p8(gmock_p8) {}\
1919 virtual return_type Perform(const args_type& args) {\
1920 return ::testing::internal::ActionHelper<return_type, gmock_Impl>::\
1921 Perform(this, args);\
1923 template <typename arg0_type, typename arg1_type, typename arg2_type, \
1924 typename arg3_type, typename arg4_type, typename arg5_type, \
1925 typename arg6_type, typename arg7_type, typename arg8_type, \
1926 typename arg9_type>\
1927 return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \
1928 arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \
1929 arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \
1930 arg9_type arg9) const;\
1941 GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
1943 template <typename F> operator ::testing::Action<F>() const {\
1944 return ::testing::Action<F>(new gmock_Impl<F>(p0, p1, p2, p3, p4, p5, \
1957 GTEST_DISALLOW_ASSIGN_(name##ActionP9);\
1959 template <typename p0##_type, typename p1##_type, typename p2##_type, \
1960 typename p3##_type, typename p4##_type, typename p5##_type, \
1961 typename p6##_type, typename p7##_type, typename p8##_type>\
1962 inline name##ActionP9<p0##_type, p1##_type, p2##_type, p3##_type, \
1963 p4##_type, p5##_type, p6##_type, p7##_type, \
1964 p8##_type> name(p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, \
1965 p4##_type p4, p5##_type p5, p6##_type p6, p7##_type p7, \
1967 return name##ActionP9<p0##_type, p1##_type, p2##_type, p3##_type, \
1968 p4##_type, p5##_type, p6##_type, p7##_type, p8##_type>(p0, p1, p2, \
1969 p3, p4, p5, p6, p7, p8);\
1971 template <typename p0##_type, typename p1##_type, typename p2##_type, \
1972 typename p3##_type, typename p4##_type, typename p5##_type, \
1973 typename p6##_type, typename p7##_type, typename p8##_type>\
1974 template <typename F>\
1975 template <typename arg0_type, typename arg1_type, typename arg2_type, \
1976 typename arg3_type, typename arg4_type, typename arg5_type, \
1977 typename arg6_type, typename arg7_type, typename arg8_type, \
1978 typename arg9_type>\
1979 typename ::testing::internal::Function<F>::Result\
1980 name##ActionP9<p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \
1981 p5##_type, p6##_type, p7##_type, \
1982 p8##_type>::gmock_Impl<F>::gmock_PerformImpl(\
1983 GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
1985 #define ACTION_P10(name, p0, p1, p2, p3, p4, p5, p6, p7, p8, p9)\
1986 template <typename p0##_type, typename p1##_type, typename p2##_type, \
1987 typename p3##_type, typename p4##_type, typename p5##_type, \
1988 typename p6##_type, typename p7##_type, typename p8##_type, \
1989 typename p9##_type>\
1990 class name##ActionP10 {\
1992 name##ActionP10(p0##_type gmock_p0, p1##_type gmock_p1, \
1993 p2##_type gmock_p2, p3##_type gmock_p3, p4##_type gmock_p4, \
1994 p5##_type gmock_p5, p6##_type gmock_p6, p7##_type gmock_p7, \
1995 p8##_type gmock_p8, p9##_type gmock_p9) : p0(gmock_p0), p1(gmock_p1), \
1996 p2(gmock_p2), p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), \
1997 p7(gmock_p7), p8(gmock_p8), p9(gmock_p9) {}\
1998 template <typename F>\
1999 class gmock_Impl : public ::testing::ActionInterface<F> {\
2001 typedef F function_type;\
2002 typedef typename ::testing::internal::Function<F>::Result return_type;\
2003 typedef typename ::testing::internal::Function<F>::ArgumentTuple\
2005 gmock_Impl(p0##_type gmock_p0, p1##_type gmock_p1, p2##_type gmock_p2, \
2006 p3##_type gmock_p3, p4##_type gmock_p4, p5##_type gmock_p5, \
2007 p6##_type gmock_p6, p7##_type gmock_p7, p8##_type gmock_p8, \
2008 p9##_type gmock_p9) : p0(gmock_p0), p1(gmock_p1), p2(gmock_p2), \
2009 p3(gmock_p3), p4(gmock_p4), p5(gmock_p5), p6(gmock_p6), \
2010 p7(gmock_p7), p8(gmock_p8), p9(gmock_p9) {}\
2011 virtual return_type Perform(const args_type& args) {\
2012 return ::testing::internal::ActionHelper<return_type, gmock_Impl>::\
2013 Perform(this, args);\
2015 template <typename arg0_type, typename arg1_type, typename arg2_type, \
2016 typename arg3_type, typename arg4_type, typename arg5_type, \
2017 typename arg6_type, typename arg7_type, typename arg8_type, \
2018 typename arg9_type>\
2019 return_type gmock_PerformImpl(const args_type& args, arg0_type arg0, \
2020 arg1_type arg1, arg2_type arg2, arg3_type arg3, arg4_type arg4, \
2021 arg5_type arg5, arg6_type arg6, arg7_type arg7, arg8_type arg8, \
2022 arg9_type arg9) const;\
2034 GTEST_DISALLOW_ASSIGN_(gmock_Impl);\
2036 template <typename F> operator ::testing::Action<F>() const {\
2037 return ::testing::Action<F>(new gmock_Impl<F>(p0, p1, p2, p3, p4, p5, \
2051 GTEST_DISALLOW_ASSIGN_(name##ActionP10);\
2053 template <typename p0##_type, typename p1##_type, typename p2##_type, \
2054 typename p3##_type, typename p4##_type, typename p5##_type, \
2055 typename p6##_type, typename p7##_type, typename p8##_type, \
2056 typename p9##_type>\
2057 inline name##ActionP10<p0##_type, p1##_type, p2##_type, p3##_type, \
2058 p4##_type, p5##_type, p6##_type, p7##_type, p8##_type, \
2059 p9##_type> name(p0##_type p0, p1##_type p1, p2##_type p2, p3##_type p3, \
2060 p4##_type p4, p5##_type p5, p6##_type p6, p7##_type p7, p8##_type p8, \
2062 return name##ActionP10<p0##_type, p1##_type, p2##_type, p3##_type, \
2063 p4##_type, p5##_type, p6##_type, p7##_type, p8##_type, p9##_type>(p0, \
2064 p1, p2, p3, p4, p5, p6, p7, p8, p9);\
2066 template <typename p0##_type, typename p1##_type, typename p2##_type, \
2067 typename p3##_type, typename p4##_type, typename p5##_type, \
2068 typename p6##_type, typename p7##_type, typename p8##_type, \
2069 typename p9##_type>\
2070 template <typename F>\
2071 template <typename arg0_type, typename arg1_type, typename arg2_type, \
2072 typename arg3_type, typename arg4_type, typename arg5_type, \
2073 typename arg6_type, typename arg7_type, typename arg8_type, \
2074 typename arg9_type>\
2075 typename ::testing::internal::Function<F>::Result\
2076 name##ActionP10<p0##_type, p1##_type, p2##_type, p3##_type, p4##_type, \
2077 p5##_type, p6##_type, p7##_type, p8##_type, \
2078 p9##_type>::gmock_Impl<F>::gmock_PerformImpl(\
2079 GMOCK_ACTION_ARG_TYPES_AND_NAMES_UNUSED_) const
2090 # pragma warning(push)
2091 # pragma warning(disable:4100)
2124 namespace internal {
2125 namespace invoke_argument {
2136 template <
typename R,
typename F>
2140 template <
typename R,
typename F,
typename A1>
2144 template <
typename R,
typename F,
typename A1,
typename A2>
2148 template <
typename R,
typename F,
typename A1,
typename A2,
typename A3>
2150 return f(a1, a2, a3);
2152 template <
typename R,
typename F,
typename A1,
typename A2,
typename A3,
2155 return f(a1, a2, a3, a4);
2157 template <
typename R,
typename F,
typename A1,
typename A2,
typename A3,
2158 typename A4,
typename A5>
2160 return f(a1, a2, a3, a4, a5);
2162 template <
typename R,
typename F,
typename A1,
typename A2,
typename A3,
2163 typename A4,
typename A5,
typename A6>
2165 return f(a1, a2, a3, a4, a5, a6);
2167 template <
typename R,
typename F,
typename A1,
typename A2,
typename A3,
2168 typename A4,
typename A5,
typename A6,
typename A7>
2171 return f(a1, a2, a3, a4, a5, a6, a7);
2173 template <
typename R,
typename F,
typename A1,
typename A2,
typename A3,
2174 typename A4,
typename A5,
typename A6,
typename A7,
typename A8>
2177 return f(a1, a2, a3, a4, a5, a6, a7, a8);
2179 template <
typename R,
typename F,
typename A1,
typename A2,
typename A3,
2180 typename A4,
typename A5,
typename A6,
typename A7,
typename A8,
2183 A7 a7, A8 a8, A9 a9) {
2184 return f(a1, a2, a3, a4, a5, a6, a7, a8, a9);
2186 template <
typename R,
typename F,
typename A1,
typename A2,
typename A3,
2187 typename A4,
typename A5,
typename A6,
typename A7,
typename A8,
2188 typename A9,
typename A10>
2190 A7 a7, A8 a8, A9 a9, A10 a10) {
2191 return f(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10);
2197 HAS_1_TEMPLATE_PARAMS(
int,
k),
2198 AND_0_VALUE_PARAMS()) {
2200 return InvokeArgumentAdl<return_type>(
2202 ::testing::get<k>(
args));
2206 HAS_1_TEMPLATE_PARAMS(
int,
k),
2207 AND_1_VALUE_PARAMS(p0)) {
2209 return InvokeArgumentAdl<return_type>(
2211 ::testing::get<k>(
args), p0);
2215 HAS_1_TEMPLATE_PARAMS(
int,
k),
2216 AND_2_VALUE_PARAMS(p0, p1)) {
2218 return InvokeArgumentAdl<return_type>(
2220 ::testing::get<k>(
args), p0, p1);
2224 HAS_1_TEMPLATE_PARAMS(
int,
k),
2225 AND_3_VALUE_PARAMS(p0, p1, p2)) {
2227 return InvokeArgumentAdl<return_type>(
2229 ::testing::get<k>(
args), p0, p1, p2);
2233 HAS_1_TEMPLATE_PARAMS(
int,
k),
2234 AND_4_VALUE_PARAMS(p0, p1, p2, p3)) {
2236 return InvokeArgumentAdl<return_type>(
2238 ::testing::get<k>(
args), p0, p1, p2, p3);
2242 HAS_1_TEMPLATE_PARAMS(
int,
k),
2243 AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4)) {
2245 return InvokeArgumentAdl<return_type>(
2247 ::testing::get<k>(
args), p0, p1, p2, p3, p4);
2251 HAS_1_TEMPLATE_PARAMS(
int,
k),
2252 AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5)) {
2254 return InvokeArgumentAdl<return_type>(
2256 ::testing::get<k>(
args), p0, p1, p2, p3, p4, p5);
2260 HAS_1_TEMPLATE_PARAMS(
int,
k),
2261 AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6)) {
2263 return InvokeArgumentAdl<return_type>(
2265 ::testing::get<k>(
args), p0, p1, p2, p3, p4, p5, p6);
2269 HAS_1_TEMPLATE_PARAMS(
int,
k),
2270 AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7)) {
2272 return InvokeArgumentAdl<return_type>(
2274 ::testing::get<k>(
args), p0, p1, p2, p3, p4, p5, p6, p7);
2278 HAS_1_TEMPLATE_PARAMS(
int,
k),
2279 AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7, p8)) {
2281 return InvokeArgumentAdl<return_type>(
2283 ::testing::get<k>(
args), p0, p1, p2, p3, p4, p5, p6, p7, p8);
2287 HAS_1_TEMPLATE_PARAMS(
int,
k),
2288 AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7, p8, p9)) {
2290 return InvokeArgumentAdl<return_type>(
2292 ::testing::get<k>(
args), p0, p1, p2, p3, p4, p5, p6, p7, p8, p9);
2301 HAS_1_TEMPLATE_PARAMS(
typename,
T),
2302 AND_0_VALUE_PARAMS()) {
2307 HAS_1_TEMPLATE_PARAMS(
typename,
T),
2308 AND_1_VALUE_PARAMS(p0)) {
2313 HAS_1_TEMPLATE_PARAMS(
typename,
T),
2314 AND_2_VALUE_PARAMS(p0, p1)) {
2315 return new T(p0, p1);
2319 HAS_1_TEMPLATE_PARAMS(
typename,
T),
2320 AND_3_VALUE_PARAMS(p0, p1, p2)) {
2321 return new T(p0, p1, p2);
2325 HAS_1_TEMPLATE_PARAMS(
typename,
T),
2326 AND_4_VALUE_PARAMS(p0, p1, p2, p3)) {
2327 return new T(p0, p1, p2, p3);
2331 HAS_1_TEMPLATE_PARAMS(
typename,
T),
2332 AND_5_VALUE_PARAMS(p0, p1, p2, p3, p4)) {
2333 return new T(p0, p1, p2, p3, p4);
2337 HAS_1_TEMPLATE_PARAMS(
typename,
T),
2338 AND_6_VALUE_PARAMS(p0, p1, p2, p3, p4, p5)) {
2339 return new T(p0, p1, p2, p3, p4, p5);
2343 HAS_1_TEMPLATE_PARAMS(
typename,
T),
2344 AND_7_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6)) {
2345 return new T(p0, p1, p2, p3, p4, p5, p6);
2349 HAS_1_TEMPLATE_PARAMS(
typename,
T),
2350 AND_8_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7)) {
2351 return new T(p0, p1, p2, p3, p4, p5, p6, p7);
2355 HAS_1_TEMPLATE_PARAMS(
typename,
T),
2356 AND_9_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7, p8)) {
2357 return new T(p0, p1, p2, p3, p4, p5, p6, p7, p8);
2361 HAS_1_TEMPLATE_PARAMS(
typename,
T),
2362 AND_10_VALUE_PARAMS(p0, p1, p2, p3, p4, p5, p6, p7, p8, p9)) {
2363 return new T(p0, p1, p2, p3, p4, p5, p6, p7, p8, p9);
2367 # pragma warning(pop)
2377 #endif // GMOCK_INCLUDE_GMOCK_GMOCK_GENERATED_ACTIONS_H_