Sacado Package Browser (Single Doxygen Collection)
Version of the Day
|
Namespaces | |
action_test | |
Classes | |
struct | UnaryFunctor |
struct | UnaryMoveOnlyFunctor |
struct | OneShotUnaryFunctor |
struct | SumOf5Functor |
struct | SumOf6Functor |
class | Foo |
class | DeletionTester |
class | TenArgConstructorClass |
class | BoolResetter |
struct | GiantTemplate |
Functions | |
short | Short (short n) |
char | Char (char ch) |
int | Nullary () |
bool | Unary (int x) |
bool | ByConstRef (const std::string &s) |
bool | ReferencesGlobalDouble (const double &x) |
const char * | Binary (const char *input, short n) |
int | Ternary (int x, char y, short z) |
int | SumOf4 (int a, int b, int c, int d) |
int | SumOfFirst2 (int a, int b, Unused, Unused) |
int | SumOf5 (int a, int b, int c, int d, int e) |
int | SumOf6 (int a, int b, int c, int d, int e, int f) |
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) |
TEST (InvokeTest, Nullary) | |
TEST (InvokeTest, Unary) | |
TEST (InvokeTest, Binary) | |
TEST (InvokeTest, Ternary) | |
TEST (InvokeTest, FunctionThatTakes4Arguments) | |
TEST (InvokeTest, FunctionThatTakes5Arguments) | |
TEST (InvokeTest, FunctionThatTakes6Arguments) | |
const char * | CharPtr (const char *s) |
TEST (InvokeTest, FunctionThatTakes7Arguments) | |
TEST (InvokeTest, FunctionThatTakes8Arguments) | |
TEST (InvokeTest, FunctionThatTakes9Arguments) | |
TEST (InvokeTest, FunctionThatTakes10Arguments) | |
TEST (InvokeTest, FunctionWithUnusedParameters) | |
TEST (InvokeTest, MethodWithUnusedParameters) | |
TEST (InvokeTest, Functor) | |
TEST (InvokeTest, FunctionWithCompatibleType) | |
TEST (InvokeMethodTest, Nullary) | |
TEST (InvokeMethodTest, Unary) | |
TEST (InvokeMethodTest, Binary) | |
TEST (InvokeMethodTest, Ternary) | |
TEST (InvokeMethodTest, MethodThatTakes4Arguments) | |
TEST (InvokeMethodTest, MethodThatTakes5Arguments) | |
TEST (InvokeMethodTest, MethodThatTakes6Arguments) | |
TEST (InvokeMethodTest, MethodThatTakes7Arguments) | |
TEST (InvokeMethodTest, MethodThatTakes8Arguments) | |
TEST (InvokeMethodTest, MethodThatTakes9Arguments) | |
TEST (InvokeMethodTest, MethodThatTakes10Arguments) | |
TEST (InvokeMethodTest, MethodWithCompatibleType) | |
TEST (WithoutArgsTest, NoArg) | |
TEST (WithArgTest, OneArg) | |
TEST (ReturnArgActionTest, WorksForOneArgIntArg0) | |
TEST (ReturnArgActionTest, WorksForMultiArgBoolArg0) | |
TEST (ReturnArgActionTest, WorksForMultiArgStringArg2) | |
TEST (ReturnArgActionTest, WorksForNonConstRefArg0) | |
TEST (SaveArgActionTest, WorksForSameType) | |
TEST (SaveArgActionTest, WorksForCompatibleType) | |
TEST (SaveArgPointeeActionTest, WorksForSameType) | |
TEST (SaveArgPointeeActionTest, WorksForCompatibleType) | |
TEST (SetArgRefereeActionTest, WorksForSameType) | |
TEST (SetArgRefereeActionTest, WorksForCompatibleType) | |
TEST (SetArgRefereeActionTest, WorksWithExtraArguments) | |
TEST (DeleteArgActionTest, OneArg) | |
TEST (DeleteArgActionTest, TenArgs) | |
TEST (SetArrayArgumentTest, SetsTheNthArray) | |
TEST (SetArrayArgumentTest, SetsTheNthArrayWithEmptyRange) | |
TEST (SetArrayArgumentTest, SetsTheNthArrayWithConvertibleType) | |
TEST (SetArrayArgumentTest, SetsTheNthArrayWithIteratorArgument) | |
TEST (ReturnPointeeTest, Works) | |
TEST (InvokeArgumentTest, Function0) | |
TEST (InvokeArgumentTest, Functor1) | |
TEST (InvokeArgumentTest, Functor1MoveOnly) | |
TEST (InvokeArgumentTest, OneShotFunctor1) | |
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 (InvokeArgumentTest, MoveOnlyType) | |
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) | |
TEST (DoAllTest, NoArgs) | |
TEST (DoAllTest, MoveOnlyArgs) | |
TEST (DoAllTest, ImplicitlyConvertsActionArguments) | |
ACTION (Return5) | |
TEST (ActionMacroTest, WorksWhenNotReferencingArguments) | |
ACTION (IncrementArg1) | |
TEST (ActionMacroTest, WorksWhenReturningVoid) | |
ACTION (IncrementArg2) | |
TEST (ActionMacroTest, CanReferenceArgumentType) | |
ACTION (Sum2) | |
TEST (ActionMacroTest, CanReferenceArgumentTuple) | |
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 69 of file gmock-more-actions_test.cc.
|
inline |
Definition at line 70 of file gmock-more-actions_test.cc.
int testing::gmock_more_actions_test::Nullary | ( | ) |
Definition at line 73 of file gmock-more-actions_test.cc.
bool testing::gmock_more_actions_test::Unary | ( | int | x | ) |
Definition at line 77 of file gmock-more-actions_test.cc.
bool testing::gmock_more_actions_test::ByConstRef | ( | const std::string & | s | ) |
Definition at line 79 of file gmock-more-actions_test.cc.
bool testing::gmock_more_actions_test::ReferencesGlobalDouble | ( | const double & | x | ) |
Definition at line 82 of file gmock-more-actions_test.cc.
const char* testing::gmock_more_actions_test::Binary | ( | const char * | input, |
short | n | ||
) |
Definition at line 98 of file gmock-more-actions_test.cc.
int testing::gmock_more_actions_test::Ternary | ( | int | x, |
char | y, | ||
short | z | ||
) |
Definition at line 100 of file gmock-more-actions_test.cc.
int testing::gmock_more_actions_test::SumOf4 | ( | int | a, |
int | b, | ||
int | c, | ||
int | d | ||
) |
Definition at line 102 of file gmock-more-actions_test.cc.
int testing::gmock_more_actions_test::SumOfFirst2 | ( | int | a, |
int | b, | ||
Unused | , | ||
Unused | |||
) |
Definition at line 104 of file gmock-more-actions_test.cc.
int testing::gmock_more_actions_test::SumOf5 | ( | int | a, |
int | b, | ||
int | c, | ||
int | d, | ||
int | e | ||
) |
Definition at line 106 of file gmock-more-actions_test.cc.
int testing::gmock_more_actions_test::SumOf6 | ( | int | a, |
int | b, | ||
int | c, | ||
int | d, | ||
int | e, | ||
int | f | ||
) |
Definition at line 114 of file gmock-more-actions_test.cc.
std::string testing::gmock_more_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 124 of file gmock-more-actions_test.cc.
std::string testing::gmock_more_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 130 of file gmock-more-actions_test.cc.
std::string testing::gmock_more_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 136 of file gmock-more-actions_test.cc.
std::string testing::gmock_more_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 142 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
Nullary | |||
) |
Definition at line 203 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
Unary | |||
) |
Definition at line 209 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
Binary | |||
) |
Definition at line 216 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
Ternary | |||
) |
Definition at line 223 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
FunctionThatTakes4Arguments | |||
) |
Definition at line 229 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
FunctionThatTakes5Arguments | |||
) |
Definition at line 235 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
FunctionThatTakes6Arguments | |||
) |
Definition at line 241 of file gmock-more-actions_test.cc.
|
inline |
Definition at line 249 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
FunctionThatTakes7Arguments | |||
) |
Definition at line 252 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
FunctionThatTakes8Arguments | |||
) |
Definition at line 263 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
FunctionThatTakes9Arguments | |||
) |
Definition at line 274 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
FunctionThatTakes10Arguments | |||
) |
Definition at line 286 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
FunctionWithUnusedParameters | |||
) |
Definition at line 299 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
MethodWithUnusedParameters | |||
) |
Definition at line 311 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
Functor | |||
) |
Definition at line 321 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
FunctionWithCompatibleType | |||
) |
Definition at line 327 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeMethodTest | , |
Nullary | |||
) |
Definition at line 335 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeMethodTest | , |
Unary | |||
) |
Definition at line 342 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeMethodTest | , |
Binary | |||
) |
Definition at line 349 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeMethodTest | , |
Ternary | |||
) |
Definition at line 358 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeMethodTest | , |
MethodThatTakes4Arguments | |||
) |
Definition at line 365 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeMethodTest | , |
MethodThatTakes5Arguments | |||
) |
Definition at line 372 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeMethodTest | , |
MethodThatTakes6Arguments | |||
) |
Definition at line 380 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeMethodTest | , |
MethodThatTakes7Arguments | |||
) |
Definition at line 389 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeMethodTest | , |
MethodThatTakes8Arguments | |||
) |
Definition at line 401 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeMethodTest | , |
MethodThatTakes9Arguments | |||
) |
Definition at line 413 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeMethodTest | , |
MethodThatTakes10Arguments | |||
) |
Definition at line 426 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeMethodTest | , |
MethodWithCompatibleType | |||
) |
Definition at line 440 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | WithoutArgsTest | , |
NoArg | |||
) |
Definition at line 448 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | WithArgTest | , |
OneArg | |||
) |
Definition at line 454 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ReturnArgActionTest | , |
WorksForOneArgIntArg0 | |||
) |
Definition at line 460 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ReturnArgActionTest | , |
WorksForMultiArgBoolArg0 | |||
) |
Definition at line 465 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ReturnArgActionTest | , |
WorksForMultiArgStringArg2 | |||
) |
Definition at line 470 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ReturnArgActionTest | , |
WorksForNonConstRefArg0 | |||
) |
Definition at line 475 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | SaveArgActionTest | , |
WorksForSameType | |||
) |
Definition at line 481 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | SaveArgActionTest | , |
WorksForCompatibleType | |||
) |
Definition at line 488 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | SaveArgPointeeActionTest | , |
WorksForSameType | |||
) |
Definition at line 495 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | SaveArgPointeeActionTest | , |
WorksForCompatibleType | |||
) |
Definition at line 503 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | SetArgRefereeActionTest | , |
WorksForSameType | |||
) |
Definition at line 511 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | SetArgRefereeActionTest | , |
WorksForCompatibleType | |||
) |
Definition at line 518 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | SetArgRefereeActionTest | , |
WorksWithExtraArguments | |||
) |
Definition at line 525 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | DeleteArgActionTest | , |
OneArg | |||
) |
Definition at line 547 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | DeleteArgActionTest | , |
TenArgs | |||
) |
Definition at line 556 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | SetArrayArgumentTest | , |
SetsTheNthArray | |||
) |
Definition at line 617 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | SetArrayArgumentTest | , |
SetsTheNthArrayWithEmptyRange | |||
) |
Definition at line 653 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | SetArrayArgumentTest | , |
SetsTheNthArrayWithConvertibleType | |||
) |
Definition at line 669 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | SetArrayArgumentTest | , |
SetsTheNthArrayWithIteratorArgument | |||
) |
Definition at line 684 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ReturnPointeeTest | , |
Works | |||
) |
Definition at line 694 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
Function0 | |||
) |
Definition at line 706 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
Functor1 | |||
) |
Definition at line 712 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
Functor1MoveOnly | |||
) |
Definition at line 718 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
OneShotFunctor1 | |||
) |
Definition at line 724 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
Function5 | |||
) |
Definition at line 730 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
Functor5 | |||
) |
Definition at line 737 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
Function6 | |||
) |
Definition at line 744 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
Functor6 | |||
) |
Definition at line 751 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
Function7 | |||
) |
Definition at line 758 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
Function8 | |||
) |
Definition at line 767 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
Function9 | |||
) |
Definition at line 776 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
Function10 | |||
) |
Definition at line 785 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
ByPointerFunction | |||
) |
Definition at line 794 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
FunctionWithCStringLiteral | |||
) |
Definition at line 802 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
ByConstReferenceFunction | |||
) |
Definition at line 809 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
ByExplicitConstReferenceFunction | |||
) |
Definition at line 820 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
MoveOnlyType | |||
) |
Definition at line 831 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | DoAllTest | , |
TwoActions | |||
) |
Definition at line 848 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | DoAllTest | , |
ThreeActions | |||
) |
Definition at line 857 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | DoAllTest | , |
FourActions | |||
) |
Definition at line 867 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | DoAllTest | , |
FiveActions | |||
) |
Definition at line 880 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | DoAllTest | , |
SixActions | |||
) |
Definition at line 894 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | DoAllTest | , |
SevenActions | |||
) |
Definition at line 909 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | DoAllTest | , |
EightActions | |||
) |
Definition at line 926 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | DoAllTest | , |
NineActions | |||
) |
Definition at line 946 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | DoAllTest | , |
TenActions | |||
) |
Definition at line 967 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | DoAllTest | , |
NoArgs | |||
) |
Definition at line 991 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | DoAllTest | , |
MoveOnlyArgs | |||
) |
Definition at line 998 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | DoAllTest | , |
ImplicitlyConvertsActionArguments | |||
) |
Definition at line 1007 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION | ( | Return5 | ) |
Definition at line 1029 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionMacroTest | , |
WorksWhenNotReferencingArguments | |||
) |
Definition at line 1031 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION | ( | IncrementArg1 | ) |
Definition at line 1040 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionMacroTest | , |
WorksWhenReturningVoid | |||
) |
Definition at line 1042 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION | ( | IncrementArg2 | ) |
Definition at line 1051 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionMacroTest | , |
CanReferenceArgumentType | |||
) |
Definition at line 1057 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION | ( | Sum2 | ) |
Definition at line 1066 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionMacroTest | , |
CanReferenceArgumentTuple | |||
) |
Definition at line 1072 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION | ( | InvokeDummy | ) |
Definition at line 1086 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionMacroTest | , |
CanReferenceMockFunctionType | |||
) |
Definition at line 1092 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION | ( | InvokeDummy2 | ) |
Definition at line 1100 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionMacroTest | , |
CanReferenceMockFunctionReturnType | |||
) |
Definition at line 1106 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION | ( | ReturnAddrOfConstBoolReferenceArg | ) |
Definition at line 1113 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionMacroTest | , |
WorksForConstReferenceArg | |||
) |
Definition at line 1118 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION | ( | ReturnAddrOfIntReferenceArg | ) |
Definition at line 1125 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionMacroTest | , |
WorksForNonConstReferenceArg | |||
) |
Definition at line 1130 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionMacroTest | , |
WorksInNamespace | |||
) |
Definition at line 1141 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION | ( | PlusTwo | ) |
Definition at line 1148 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionMacroTest | , |
WorksForDifferentArgumentNumbers | |||
) |
Definition at line 1150 of file gmock-more-actions_test.cc.
Definition at line 1160 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionPMacroTest | , |
DefinesParameterizedAction | |||
) |
Definition at line 1162 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION_P | ( | TypedPlus | , |
n | |||
) |
Definition at line 1169 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionPMacroTest | , |
CanReferenceArgumentAndParameterTypes | |||
) |
Definition at line 1175 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionPMacroTest | , |
WorksInCompatibleMockFunction | |||
) |
Definition at line 1182 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION | ( | OverloadedAction | ) |
Definition at line 1192 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION_P | ( | OverloadedAction | , |
default_value | |||
) |
Definition at line 1194 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION_P2 | ( | OverloadedAction | , |
true_value | , | ||
false_value | |||
) |
Definition at line 1198 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionMacroTest | , |
CanDefineOverloadedActions | |||
) |
Definition at line 1202 of file gmock-more-actions_test.cc.
Definition at line 1220 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionPnMacroTest | , |
WorksFor3Parameters | |||
) |
Definition at line 1222 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION_P4 | ( | Plus | , |
p0 | , | ||
p1 | , | ||
p2 | , | ||
p3 | |||
) |
Definition at line 1232 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionPnMacroTest | , |
WorksFor4Parameters | |||
) |
Definition at line 1234 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION_P5 | ( | Plus | , |
p0 | , | ||
p1 | , | ||
p2 | , | ||
p3 | , | ||
p4 | |||
) |
Definition at line 1239 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionPnMacroTest | , |
WorksFor5Parameters | |||
) |
Definition at line 1241 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION_P6 | ( | Plus | , |
p0 | , | ||
p1 | , | ||
p2 | , | ||
p3 | , | ||
p4 | , | ||
p5 | |||
) |
Definition at line 1246 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionPnMacroTest | , |
WorksFor6Parameters | |||
) |
Definition at line 1250 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION_P7 | ( | Plus | , |
p0 | , | ||
p1 | , | ||
p2 | , | ||
p3 | , | ||
p4 | , | ||
p5 | , | ||
p6 | |||
) |
Definition at line 1255 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionPnMacroTest | , |
WorksFor7Parameters | |||
) |
Definition at line 1259 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION_P8 | ( | Plus | , |
p0 | , | ||
p1 | , | ||
p2 | , | ||
p3 | , | ||
p4 | , | ||
p5 | , | ||
p6 | , | ||
p7 | |||
) |
Definition at line 1264 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionPnMacroTest | , |
WorksFor8Parameters | |||
) |
Definition at line 1268 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION_P9 | ( | Plus | , |
p0 | , | ||
p1 | , | ||
p2 | , | ||
p3 | , | ||
p4 | , | ||
p5 | , | ||
p6 | , | ||
p7 | , | ||
p8 | |||
) |
Definition at line 1274 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionPnMacroTest | , |
WorksFor9Parameters | |||
) |
Definition at line 1278 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION_P10 | ( | Plus | , |
p0 | , | ||
p1 | , | ||
p2 | , | ||
p3 | , | ||
p4 | , | ||
p5 | , | ||
p6 | , | ||
p7 | , | ||
p8 | , | ||
last_param | |||
) |
Definition at line 1284 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionPnMacroTest | , |
WorksFor10Parameters | |||
) |
Definition at line 1290 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION_P2 | ( | PadArgument | , |
prefix | , | ||
suffix | |||
) |
Definition at line 1298 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionPnMacroTest | , |
SimpleTypePromotion | |||
) |
Definition at line 1305 of file gmock-more-actions_test.cc.
Definition at line 1319 of file gmock-more-actions_test.cc.
ConcatImplActionP3<std::string, T1, T2> testing::gmock_more_actions_test::Concat | ( | const std::string & | a, |
T1 | b, | ||
T2 | c | ||
) |
Definition at line 1334 of file gmock-more-actions_test.cc.
ConcatImplActionP3<T1, int, T2> testing::gmock_more_actions_test::Concat | ( | T1 | a, |
int | b, | ||
T2 | c | ||
) |
Definition at line 1353 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionPnMacroTest | , |
CanPartiallyRestrictParameterTypes | |||
) |
Definition at line 1357 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION | ( | DoFoo | ) |
Definition at line 1367 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION_P | ( | DoFoo | , |
p | |||
) |
Definition at line 1368 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION_P2 | ( | DoFoo | , |
p0 | , | ||
p1 | |||
) |
Definition at line 1369 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionPnMacroTest | , |
TypesAreCorrect | |||
) |
Definition at line 1371 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION_P | ( | Plus1 | , |
x | |||
) |
Definition at line 1411 of file gmock-more-actions_test.cc.
Definition at line 1412 of file gmock-more-actions_test.cc.
Definition at line 1413 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION_P10 | ( | Plus10 | , |
a0 | , | ||
a1 | , | ||
a2 | , | ||
a3 | , | ||
a4 | , | ||
a5 | , | ||
a6 | , | ||
a7 | , | ||
a8 | , | ||
a9 | |||
) |
Definition at line 1414 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionPnMacroTest | , |
CanExplicitlyInstantiateWithReferenceTypes | |||
) |
Definition at line 1418 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION_TEMPLATE | ( | CreateNew | , |
HAS_1_TEMPLATE_PARAMS(typename, T) | , | ||
AND_0_VALUE_PARAMS() | |||
) |
Definition at line 1447 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionTemplateTest | , |
WorksWithoutValueParam | |||
) |
Definition at line 1452 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION_TEMPLATE | ( | CreateNew | , |
HAS_1_TEMPLATE_PARAMS(typename, T) | , | ||
AND_1_VALUE_PARAMS(a0) | |||
) |
Definition at line 1459 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionTemplateTest | , |
WorksWithValueParams | |||
) |
Definition at line 1464 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION_TEMPLATE | ( | MyDeleteArg | , |
HAS_1_TEMPLATE_PARAMS(int, k) | , | ||
AND_0_VALUE_PARAMS() | |||
) |
Definition at line 1472 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionTemplateTest | , |
WorksForIntegralTemplateParams | |||
) |
Definition at line 1487 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION_TEMPLATE | ( | ReturnSmartPointer | , |
HAS_1_TEMPLATE_PARAMS(template< typename Pointee > class,Pointer) | , | ||
AND_1_VALUE_PARAMS(pointee) | |||
) |
Definition at line 1497 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionTemplateTest | , |
WorksForTemplateTemplateParameters | |||
) |
Definition at line 1504 of file gmock-more-actions_test.cc.
testing::gmock_more_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 1520 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionTemplateTest | , |
WorksFor10TemplateParameters | |||
) |
Definition at line 1529 of file gmock-more-actions_test.cc.
testing::gmock_more_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 1539 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionTemplateTest | , |
WorksFor10ValueParameters | |||
) |
Definition at line 1544 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION | ( | ReturnSum | ) |
Definition at line 1552 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION_P | ( | ReturnSum | , |
x | |||
) |
Definition at line 1554 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION_TEMPLATE | ( | ReturnSum | , |
HAS_1_TEMPLATE_PARAMS(typename, Number) | , | ||
AND_2_VALUE_PARAMS(v1, v2) | |||
) |
Definition at line 1556 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION_TEMPLATE | ( | ReturnSum | , |
HAS_1_TEMPLATE_PARAMS(typename, Number) | , | ||
AND_3_VALUE_PARAMS(v1, v2, v3) | |||
) |
Definition at line 1561 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::ACTION_TEMPLATE | ( | ReturnSum | , |
HAS_2_TEMPLATE_PARAMS(typename, Number, int, k) | , | ||
AND_4_VALUE_PARAMS(v1, v2, v3, v4) | |||
) |
Definition at line 1566 of file gmock-more-actions_test.cc.
testing::gmock_more_actions_test::TEST | ( | ActionTemplateTest | , |
CanBeOverloadedOnNumberOfValueParameters | |||
) |
Definition at line 1571 of file gmock-more-actions_test.cc.
bool testing::gmock_more_actions_test::g_done = false |
Definition at line 75 of file gmock-more-actions_test.cc.
const double testing::gmock_more_actions_test::g_double = 0 |
Definition at line 81 of file gmock-more-actions_test.cc.