Sacado Package Browser (Single Doxygen Collection)
Version of the Day
|
Namespaces | |
action_test | |
Classes | |
struct | UnaryFunctor |
struct | SumOf5Functor |
struct | SumOf6Functor |
class | TenArgConstructorClass |
class | BoolResetter |
struct | GiantTemplate |
Functions | |
short | Short (short n) |
char | Char (char ch) |
int | Nullary () |
bool | ByConstRef (const std::string &s) |
bool | ReferencesGlobalDouble (const double &x) |
const char * | Binary (const char *input, short n) |
int | SumOf5 (int a, int b, int c, int d, int e) |
std::string | Concat5 (const char *s1, const char *s2, const char *s3, const char *s4, const char *s5) |
int | SumOf6 (int a, int b, int c, int d, int e, int f) |
std::string | Concat6 (const char *s1, const char *s2, const char *s3, const char *s4, const char *s5, const char *s6) |
std::string | Concat7 (const char *s1, const char *s2, const char *s3, const char *s4, const char *s5, const char *s6, const char *s7) |
std::string | Concat8 (const char *s1, const char *s2, const char *s3, const char *s4, const char *s5, const char *s6, const char *s7, const char *s8) |
std::string | Concat9 (const char *s1, const char *s2, const char *s3, const char *s4, const char *s5, const char *s6, const char *s7, const char *s8, const char *s9) |
std::string | Concat10 (const char *s1, const char *s2, const char *s3, const char *s4, const char *s5, const char *s6, const char *s7, const char *s8, const char *s9, const char *s10) |
const char * | CharPtr (const char *s) |
TEST (InvokeArgumentTest, Function0) | |
TEST (InvokeArgumentTest, Functor1) | |
TEST (InvokeArgumentTest, Function5) | |
TEST (InvokeArgumentTest, Functor5) | |
TEST (InvokeArgumentTest, Function6) | |
TEST (InvokeArgumentTest, Functor6) | |
TEST (InvokeArgumentTest, Function7) | |
TEST (InvokeArgumentTest, Function8) | |
TEST (InvokeArgumentTest, Function9) | |
TEST (InvokeArgumentTest, Function10) | |
TEST (InvokeArgumentTest, ByPointerFunction) | |
TEST (InvokeArgumentTest, FunctionWithCStringLiteral) | |
TEST (InvokeArgumentTest, ByConstReferenceFunction) | |
TEST (InvokeArgumentTest, ByExplicitConstReferenceFunction) | |
TEST (DoAllTest, TwoActions) | |
TEST (DoAllTest, ThreeActions) | |
TEST (DoAllTest, FourActions) | |
TEST (DoAllTest, FiveActions) | |
TEST (DoAllTest, SixActions) | |
TEST (DoAllTest, SevenActions) | |
TEST (DoAllTest, EightActions) | |
TEST (DoAllTest, NineActions) | |
TEST (DoAllTest, TenActions) | |
ACTION (Return5) | |
TEST (ActionMacroTest, WorksWhenNotReferencingArguments) | |
ACTION (IncrementArg1) | |
TEST (ActionMacroTest, WorksWhenReturningVoid) | |
ACTION (IncrementArg2) | |
TEST (ActionMacroTest, CanReferenceArgumentType) | |
ACTION (Sum2) | |
TEST (ActionMacroTest, CanReferenceArgumentTuple) | |
int | Dummy (bool flag) |
ACTION (InvokeDummy) | |
TEST (ActionMacroTest, CanReferenceMockFunctionType) | |
ACTION (InvokeDummy2) | |
TEST (ActionMacroTest, CanReferenceMockFunctionReturnType) | |
ACTION (ReturnAddrOfConstBoolReferenceArg) | |
TEST (ActionMacroTest, WorksForConstReferenceArg) | |
ACTION (ReturnAddrOfIntReferenceArg) | |
TEST (ActionMacroTest, WorksForNonConstReferenceArg) | |
TEST (ActionMacroTest, WorksInNamespace) | |
ACTION (PlusTwo) | |
TEST (ActionMacroTest, WorksForDifferentArgumentNumbers) | |
ACTION_P (Plus, n) | |
TEST (ActionPMacroTest, DefinesParameterizedAction) | |
ACTION_P (TypedPlus, n) | |
TEST (ActionPMacroTest, CanReferenceArgumentAndParameterTypes) | |
TEST (ActionPMacroTest, WorksInCompatibleMockFunction) | |
ACTION (OverloadedAction) | |
ACTION_P (OverloadedAction, default_value) | |
ACTION_P2 (OverloadedAction, true_value, false_value) | |
TEST (ActionMacroTest, CanDefineOverloadedActions) | |
ACTION_P3 (Plus, m, n, k) | |
TEST (ActionPnMacroTest, WorksFor3Parameters) | |
ACTION_P4 (Plus, p0, p1, p2, p3) | |
TEST (ActionPnMacroTest, WorksFor4Parameters) | |
ACTION_P5 (Plus, p0, p1, p2, p3, p4) | |
TEST (ActionPnMacroTest, WorksFor5Parameters) | |
ACTION_P6 (Plus, p0, p1, p2, p3, p4, p5) | |
TEST (ActionPnMacroTest, WorksFor6Parameters) | |
ACTION_P7 (Plus, p0, p1, p2, p3, p4, p5, p6) | |
TEST (ActionPnMacroTest, WorksFor7Parameters) | |
ACTION_P8 (Plus, p0, p1, p2, p3, p4, p5, p6, p7) | |
TEST (ActionPnMacroTest, WorksFor8Parameters) | |
ACTION_P9 (Plus, p0, p1, p2, p3, p4, p5, p6, p7, p8) | |
TEST (ActionPnMacroTest, WorksFor9Parameters) | |
ACTION_P10 (Plus, p0, p1, p2, p3, p4, p5, p6, p7, p8, last_param) | |
TEST (ActionPnMacroTest, WorksFor10Parameters) | |
ACTION_P2 (PadArgument, prefix, suffix) | |
TEST (ActionPnMacroTest, SimpleTypePromotion) | |
ACTION_P3 (ConcatImpl, a, b, c) | |
template<typename T1 , typename T2 > | |
ConcatImplActionP3 < std::string, T1, T2 > | Concat (const std::string &a, T1 b, T2 c) |
template<typename T1 , typename T2 > | |
ConcatImplActionP3< T1, int, T2 > | Concat (T1 a, int b, T2 c) |
TEST (ActionPnMacroTest, CanPartiallyRestrictParameterTypes) | |
ACTION (DoFoo) | |
ACTION_P (DoFoo, p) | |
ACTION_P2 (DoFoo, p0, p1) | |
TEST (ActionPnMacroTest, TypesAreCorrect) | |
ACTION_P (Plus1, x) | |
ACTION_P2 (Plus2, x, y) | |
ACTION_P3 (Plus3, x, y, z) | |
ACTION_P10 (Plus10, a0, a1, a2, a3, a4, a5, a6, a7, a8, a9) | |
TEST (ActionPnMacroTest, CanExplicitlyInstantiateWithReferenceTypes) | |
ACTION_TEMPLATE (CreateNew, HAS_1_TEMPLATE_PARAMS(typename, T), AND_0_VALUE_PARAMS()) | |
TEST (ActionTemplateTest, WorksWithoutValueParam) | |
ACTION_TEMPLATE (CreateNew, HAS_1_TEMPLATE_PARAMS(typename, T), AND_1_VALUE_PARAMS(a0)) | |
TEST (ActionTemplateTest, WorksWithValueParams) | |
ACTION_TEMPLATE (MyDeleteArg, HAS_1_TEMPLATE_PARAMS(int, k), AND_0_VALUE_PARAMS()) | |
TEST (ActionTemplateTest, WorksForIntegralTemplateParams) | |
ACTION_TEMPLATE (ReturnSmartPointer, HAS_1_TEMPLATE_PARAMS(template< typename Pointee > class, Pointer), AND_1_VALUE_PARAMS(pointee)) | |
TEST (ActionTemplateTest, WorksForTemplateTemplateParameters) | |
ACTION_TEMPLATE (ReturnGiant, HAS_10_TEMPLATE_PARAMS(typename, T1, typename, T2, typename, T3, int, k4, bool, k5, unsigned int, k6, class, T7, class, T8, class, T9, template< typename T > class, T10), AND_1_VALUE_PARAMS(value)) | |
TEST (ActionTemplateTest, WorksFor10TemplateParameters) | |
ACTION_TEMPLATE (ReturnSum, HAS_1_TEMPLATE_PARAMS(typename, Number), AND_10_VALUE_PARAMS(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10)) | |
TEST (ActionTemplateTest, WorksFor10ValueParameters) | |
ACTION (ReturnSum) | |
ACTION_P (ReturnSum, x) | |
ACTION_TEMPLATE (ReturnSum, HAS_1_TEMPLATE_PARAMS(typename, Number), AND_2_VALUE_PARAMS(v1, v2)) | |
ACTION_TEMPLATE (ReturnSum, HAS_1_TEMPLATE_PARAMS(typename, Number), AND_3_VALUE_PARAMS(v1, v2, v3)) | |
ACTION_TEMPLATE (ReturnSum, HAS_2_TEMPLATE_PARAMS(typename, Number, int, k), AND_4_VALUE_PARAMS(v1, v2, v3, v4)) | |
TEST (ActionTemplateTest, CanBeOverloadedOnNumberOfValueParameters) | |
Variables | |
bool | g_done = false |
const double | g_double = 0 |
|
inline |
Definition at line 61 of file gmock-generated-actions_test.cc.
|
inline |
Definition at line 62 of file gmock-generated-actions_test.cc.
int testing::gmock_generated_actions_test::Nullary | ( | ) |
Definition at line 65 of file gmock-generated-actions_test.cc.
bool testing::gmock_generated_actions_test::ByConstRef | ( | const std::string & | s | ) |
Definition at line 69 of file gmock-generated-actions_test.cc.
bool testing::gmock_generated_actions_test::ReferencesGlobalDouble | ( | const double & | x | ) |
Definition at line 72 of file gmock-generated-actions_test.cc.
const char* testing::gmock_generated_actions_test::Binary | ( | const char * | input, |
short | n | ||
) |
Definition at line 78 of file gmock-generated-actions_test.cc.
int testing::gmock_generated_actions_test::SumOf5 | ( | int | a, |
int | b, | ||
int | c, | ||
int | d, | ||
int | e | ||
) |
Definition at line 80 of file gmock-generated-actions_test.cc.
std::string testing::gmock_generated_actions_test::Concat5 | ( | const char * | s1, |
const char * | s2, | ||
const char * | s3, | ||
const char * | s4, | ||
const char * | s5 | ||
) |
Definition at line 88 of file gmock-generated-actions_test.cc.
int testing::gmock_generated_actions_test::SumOf6 | ( | int | a, |
int | b, | ||
int | c, | ||
int | d, | ||
int | e, | ||
int | f | ||
) |
Definition at line 93 of file gmock-generated-actions_test.cc.
std::string testing::gmock_generated_actions_test::Concat6 | ( | const char * | s1, |
const char * | s2, | ||
const char * | s3, | ||
const char * | s4, | ||
const char * | s5, | ||
const char * | s6 | ||
) |
Definition at line 103 of file gmock-generated-actions_test.cc.
std::string testing::gmock_generated_actions_test::Concat7 | ( | const char * | s1, |
const char * | s2, | ||
const char * | s3, | ||
const char * | s4, | ||
const char * | s5, | ||
const char * | s6, | ||
const char * | s7 | ||
) |
Definition at line 108 of file gmock-generated-actions_test.cc.
std::string testing::gmock_generated_actions_test::Concat8 | ( | const char * | s1, |
const char * | s2, | ||
const char * | s3, | ||
const char * | s4, | ||
const char * | s5, | ||
const char * | s6, | ||
const char * | s7, | ||
const char * | s8 | ||
) |
Definition at line 114 of file gmock-generated-actions_test.cc.
std::string testing::gmock_generated_actions_test::Concat9 | ( | const char * | s1, |
const char * | s2, | ||
const char * | s3, | ||
const char * | s4, | ||
const char * | s5, | ||
const char * | s6, | ||
const char * | s7, | ||
const char * | s8, | ||
const char * | s9 | ||
) |
Definition at line 120 of file gmock-generated-actions_test.cc.
std::string testing::gmock_generated_actions_test::Concat10 | ( | const char * | s1, |
const char * | s2, | ||
const char * | s3, | ||
const char * | s4, | ||
const char * | s5, | ||
const char * | s6, | ||
const char * | s7, | ||
const char * | s8, | ||
const char * | s9, | ||
const char * | s10 | ||
) |
Definition at line 126 of file gmock-generated-actions_test.cc.
|
inline |
Definition at line 135 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | InvokeArgumentTest | , |
Function0 | |||
) |
Definition at line 140 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | InvokeArgumentTest | , |
Functor1 | |||
) |
Definition at line 146 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | InvokeArgumentTest | , |
Function5 | |||
) |
Definition at line 152 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | InvokeArgumentTest | , |
Functor5 | |||
) |
Definition at line 159 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | InvokeArgumentTest | , |
Function6 | |||
) |
Definition at line 166 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | InvokeArgumentTest | , |
Functor6 | |||
) |
Definition at line 173 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | InvokeArgumentTest | , |
Function7 | |||
) |
Definition at line 180 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | InvokeArgumentTest | , |
Function8 | |||
) |
Definition at line 189 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | InvokeArgumentTest | , |
Function9 | |||
) |
Definition at line 198 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | InvokeArgumentTest | , |
Function10 | |||
) |
Definition at line 207 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | InvokeArgumentTest | , |
ByPointerFunction | |||
) |
Definition at line 216 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | InvokeArgumentTest | , |
FunctionWithCStringLiteral | |||
) |
Definition at line 224 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | InvokeArgumentTest | , |
ByConstReferenceFunction | |||
) |
Definition at line 231 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | InvokeArgumentTest | , |
ByExplicitConstReferenceFunction | |||
) |
Definition at line 242 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | DoAllTest | , |
TwoActions | |||
) |
Definition at line 254 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | DoAllTest | , |
ThreeActions | |||
) |
Definition at line 263 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | DoAllTest | , |
FourActions | |||
) |
Definition at line 274 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | DoAllTest | , |
FiveActions | |||
) |
Definition at line 289 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | DoAllTest | , |
SixActions | |||
) |
Definition at line 306 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | DoAllTest | , |
SevenActions | |||
) |
Definition at line 325 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | DoAllTest | , |
EightActions | |||
) |
Definition at line 346 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | DoAllTest | , |
NineActions | |||
) |
Definition at line 370 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | DoAllTest | , |
TenActions | |||
) |
Definition at line 396 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION | ( | Return5 | ) |
Definition at line 440 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionMacroTest | , |
WorksWhenNotReferencingArguments | |||
) |
Definition at line 442 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION | ( | IncrementArg1 | ) |
Definition at line 451 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionMacroTest | , |
WorksWhenReturningVoid | |||
) |
Definition at line 453 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION | ( | IncrementArg2 | ) |
Definition at line 462 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionMacroTest | , |
CanReferenceArgumentType | |||
) |
Definition at line 468 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION | ( | Sum2 | ) |
Definition at line 477 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionMacroTest | , |
CanReferenceArgumentTuple | |||
) |
Definition at line 483 of file gmock-generated-actions_test.cc.
int testing::gmock_generated_actions_test::Dummy | ( | bool | flag | ) |
Definition at line 491 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION | ( | InvokeDummy | ) |
Definition at line 493 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionMacroTest | , |
CanReferenceMockFunctionType | |||
) |
Definition at line 499 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION | ( | InvokeDummy2 | ) |
Definition at line 507 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionMacroTest | , |
CanReferenceMockFunctionReturnType | |||
) |
Definition at line 513 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION | ( | ReturnAddrOfConstBoolReferenceArg | ) |
Definition at line 520 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionMacroTest | , |
WorksForConstReferenceArg | |||
) |
Definition at line 525 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION | ( | ReturnAddrOfIntReferenceArg | ) |
Definition at line 532 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionMacroTest | , |
WorksForNonConstReferenceArg | |||
) |
Definition at line 537 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionMacroTest | , |
WorksInNamespace | |||
) |
Definition at line 548 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION | ( | PlusTwo | ) |
Definition at line 555 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionMacroTest | , |
WorksForDifferentArgumentNumbers | |||
) |
Definition at line 557 of file gmock-generated-actions_test.cc.
Definition at line 567 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionPMacroTest | , |
DefinesParameterizedAction | |||
) |
Definition at line 569 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_P | ( | TypedPlus | , |
n | |||
) |
Definition at line 576 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionPMacroTest | , |
CanReferenceArgumentAndParameterTypes | |||
) |
Definition at line 582 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionPMacroTest | , |
WorksInCompatibleMockFunction | |||
) |
Definition at line 589 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION | ( | OverloadedAction | ) |
Definition at line 599 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_P | ( | OverloadedAction | , |
default_value | |||
) |
Definition at line 601 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_P2 | ( | OverloadedAction | , |
true_value | , | ||
false_value | |||
) |
Definition at line 605 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionMacroTest | , |
CanDefineOverloadedActions | |||
) |
Definition at line 609 of file gmock-generated-actions_test.cc.
Definition at line 627 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionPnMacroTest | , |
WorksFor3Parameters | |||
) |
Definition at line 629 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_P4 | ( | Plus | , |
p0 | , | ||
p1 | , | ||
p2 | , | ||
p3 | |||
) |
Definition at line 639 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionPnMacroTest | , |
WorksFor4Parameters | |||
) |
Definition at line 641 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_P5 | ( | Plus | , |
p0 | , | ||
p1 | , | ||
p2 | , | ||
p3 | , | ||
p4 | |||
) |
Definition at line 646 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionPnMacroTest | , |
WorksFor5Parameters | |||
) |
Definition at line 648 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_P6 | ( | Plus | , |
p0 | , | ||
p1 | , | ||
p2 | , | ||
p3 | , | ||
p4 | , | ||
p5 | |||
) |
Definition at line 653 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionPnMacroTest | , |
WorksFor6Parameters | |||
) |
Definition at line 657 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_P7 | ( | Plus | , |
p0 | , | ||
p1 | , | ||
p2 | , | ||
p3 | , | ||
p4 | , | ||
p5 | , | ||
p6 | |||
) |
Definition at line 662 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionPnMacroTest | , |
WorksFor7Parameters | |||
) |
Definition at line 666 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_P8 | ( | Plus | , |
p0 | , | ||
p1 | , | ||
p2 | , | ||
p3 | , | ||
p4 | , | ||
p5 | , | ||
p6 | , | ||
p7 | |||
) |
Definition at line 671 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionPnMacroTest | , |
WorksFor8Parameters | |||
) |
Definition at line 675 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_P9 | ( | Plus | , |
p0 | , | ||
p1 | , | ||
p2 | , | ||
p3 | , | ||
p4 | , | ||
p5 | , | ||
p6 | , | ||
p7 | , | ||
p8 | |||
) |
Definition at line 681 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionPnMacroTest | , |
WorksFor9Parameters | |||
) |
Definition at line 685 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_P10 | ( | Plus | , |
p0 | , | ||
p1 | , | ||
p2 | , | ||
p3 | , | ||
p4 | , | ||
p5 | , | ||
p6 | , | ||
p7 | , | ||
p8 | , | ||
last_param | |||
) |
Definition at line 691 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionPnMacroTest | , |
WorksFor10Parameters | |||
) |
Definition at line 697 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_P2 | ( | PadArgument | , |
prefix | , | ||
suffix | |||
) |
Definition at line 705 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionPnMacroTest | , |
SimpleTypePromotion | |||
) |
Definition at line 712 of file gmock-generated-actions_test.cc.
Definition at line 726 of file gmock-generated-actions_test.cc.
ConcatImplActionP3<std::string, T1, T2> testing::gmock_generated_actions_test::Concat | ( | const std::string & | a, |
T1 | b, | ||
T2 | c | ||
) |
Definition at line 742 of file gmock-generated-actions_test.cc.
ConcatImplActionP3<T1, int, T2> testing::gmock_generated_actions_test::Concat | ( | T1 | a, |
int | b, | ||
T2 | c | ||
) |
Definition at line 761 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionPnMacroTest | , |
CanPartiallyRestrictParameterTypes | |||
) |
Definition at line 765 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION | ( | DoFoo | ) |
Definition at line 775 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_P | ( | DoFoo | , |
p | |||
) |
Definition at line 776 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_P2 | ( | DoFoo | , |
p0 | , | ||
p1 | |||
) |
Definition at line 777 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionPnMacroTest | , |
TypesAreCorrect | |||
) |
Definition at line 779 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_P | ( | Plus1 | , |
x | |||
) |
Definition at line 819 of file gmock-generated-actions_test.cc.
Definition at line 820 of file gmock-generated-actions_test.cc.
Definition at line 821 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_P10 | ( | Plus10 | , |
a0 | , | ||
a1 | , | ||
a2 | , | ||
a3 | , | ||
a4 | , | ||
a5 | , | ||
a6 | , | ||
a7 | , | ||
a8 | , | ||
a9 | |||
) |
Definition at line 822 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionPnMacroTest | , |
CanExplicitlyInstantiateWithReferenceTypes | |||
) |
Definition at line 826 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_TEMPLATE | ( | CreateNew | , |
HAS_1_TEMPLATE_PARAMS(typename, T) | , | ||
AND_0_VALUE_PARAMS() | |||
) |
Definition at line 857 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionTemplateTest | , |
WorksWithoutValueParam | |||
) |
Definition at line 863 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_TEMPLATE | ( | CreateNew | , |
HAS_1_TEMPLATE_PARAMS(typename, T) | , | ||
AND_1_VALUE_PARAMS(a0) | |||
) |
Definition at line 870 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionTemplateTest | , |
WorksWithValueParams | |||
) |
Definition at line 876 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_TEMPLATE | ( | MyDeleteArg | , |
HAS_1_TEMPLATE_PARAMS(int, k) | , | ||
AND_0_VALUE_PARAMS() | |||
) |
Definition at line 884 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionTemplateTest | , |
WorksForIntegralTemplateParams | |||
) |
Definition at line 899 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_TEMPLATE | ( | ReturnSmartPointer | , |
HAS_1_TEMPLATE_PARAMS(template< typename Pointee > class,Pointer) | , | ||
AND_1_VALUE_PARAMS(pointee) | |||
) |
Definition at line 909 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionTemplateTest | , |
WorksForTemplateTemplateParameters | |||
) |
Definition at line 916 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_TEMPLATE | ( | ReturnGiant | , |
HAS_10_TEMPLATE_PARAMS(typename, T1,typename, T2,typename, T3,int, k4,bool, k5,unsigned int, k6,class, T7,class, T8,class, T9,template< typename T > class, T10) | , | ||
AND_1_VALUE_PARAMS(value) | |||
) |
Definition at line 932 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionTemplateTest | , |
WorksFor10TemplateParameters | |||
) |
Definition at line 948 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_TEMPLATE | ( | ReturnSum | , |
HAS_1_TEMPLATE_PARAMS(typename, Number) | , | ||
AND_10_VALUE_PARAMS(v1, v2, v3, v4, v5, v6, v7, v8, v9, v10) | |||
) |
Definition at line 958 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionTemplateTest | , |
WorksFor10ValueParameters | |||
) |
Definition at line 964 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION | ( | ReturnSum | ) |
Definition at line 972 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_P | ( | ReturnSum | , |
x | |||
) |
Definition at line 974 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_TEMPLATE | ( | ReturnSum | , |
HAS_1_TEMPLATE_PARAMS(typename, Number) | , | ||
AND_2_VALUE_PARAMS(v1, v2) | |||
) |
Definition at line 976 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_TEMPLATE | ( | ReturnSum | , |
HAS_1_TEMPLATE_PARAMS(typename, Number) | , | ||
AND_3_VALUE_PARAMS(v1, v2, v3) | |||
) |
Definition at line 982 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::ACTION_TEMPLATE | ( | ReturnSum | , |
HAS_2_TEMPLATE_PARAMS(typename, Number, int, k) | , | ||
AND_4_VALUE_PARAMS(v1, v2, v3, v4) | |||
) |
Definition at line 988 of file gmock-generated-actions_test.cc.
testing::gmock_generated_actions_test::TEST | ( | ActionTemplateTest | , |
CanBeOverloadedOnNumberOfValueParameters | |||
) |
Definition at line 994 of file gmock-generated-actions_test.cc.
bool testing::gmock_generated_actions_test::g_done = false |
Definition at line 67 of file gmock-generated-actions_test.cc.
const double testing::gmock_generated_actions_test::g_double = 0 |
Definition at line 71 of file gmock-generated-actions_test.cc.