|
cMHN 1.2
C++ library for learning MHNs with pRC
|
Namespaces | |
| namespace | action_test |
Classes | |
| class | BoolResetter |
| class | DeletionTester |
| class | Foo |
| struct | GiantTemplate |
| struct | SumOf5Functor |
| struct | SumOf6Functor |
| class | TenArgConstructorClass |
| struct | UnaryFunctor |
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, 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) | |
| 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 |
| testing::gmock_more_actions_test::ACTION | ( | DoFoo | ) |
| testing::gmock_more_actions_test::ACTION | ( | IncrementArg1 | ) |
| testing::gmock_more_actions_test::ACTION | ( | IncrementArg2 | ) |
| testing::gmock_more_actions_test::ACTION | ( | InvokeDummy | ) |
| testing::gmock_more_actions_test::ACTION | ( | InvokeDummy2 | ) |
| testing::gmock_more_actions_test::ACTION | ( | OverloadedAction | ) |
| testing::gmock_more_actions_test::ACTION | ( | PlusTwo | ) |
| testing::gmock_more_actions_test::ACTION | ( | Return5 | ) |
| testing::gmock_more_actions_test::ACTION | ( | ReturnAddrOfConstBoolReferenceArg | ) |
| testing::gmock_more_actions_test::ACTION | ( | ReturnAddrOfIntReferenceArg | ) |
| testing::gmock_more_actions_test::ACTION | ( | ReturnSum | ) |
| testing::gmock_more_actions_test::ACTION | ( | Sum2 | ) |
| testing::gmock_more_actions_test::ACTION_P | ( | DoFoo | , |
| p | ) |
| testing::gmock_more_actions_test::ACTION_P | ( | OverloadedAction | , |
| default_value | ) |
| testing::gmock_more_actions_test::ACTION_P | ( | Plus | , |
| n | ) |
| testing::gmock_more_actions_test::ACTION_P | ( | Plus1 | , |
| x | ) |
| testing::gmock_more_actions_test::ACTION_P | ( | ReturnSum | , |
| x | ) |
| testing::gmock_more_actions_test::ACTION_P | ( | TypedPlus | , |
| n | ) |
| testing::gmock_more_actions_test::ACTION_P10 | ( | Plus | , |
| p0 | , | ||
| p1 | , | ||
| p2 | , | ||
| p3 | , | ||
| p4 | , | ||
| p5 | , | ||
| p6 | , | ||
| p7 | , | ||
| p8 | , | ||
| last_param | ) |
| testing::gmock_more_actions_test::ACTION_P10 | ( | Plus10 | , |
| a0 | , | ||
| a1 | , | ||
| a2 | , | ||
| a3 | , | ||
| a4 | , | ||
| a5 | , | ||
| a6 | , | ||
| a7 | , | ||
| a8 | , | ||
| a9 | ) |
| testing::gmock_more_actions_test::ACTION_P2 | ( | DoFoo | , |
| p0 | , | ||
| p1 | ) |
| testing::gmock_more_actions_test::ACTION_P2 | ( | OverloadedAction | , |
| true_value | , | ||
| false_value | ) |
| testing::gmock_more_actions_test::ACTION_P2 | ( | PadArgument | , |
| prefix | , | ||
| suffix | ) |
| testing::gmock_more_actions_test::ACTION_P3 | ( | ConcatImpl | , |
| a | , | ||
| b | , | ||
| c | ) |
| testing::gmock_more_actions_test::ACTION_P3 | ( | Plus | , |
| m | , | ||
| n | , | ||
| k | ) |
| testing::gmock_more_actions_test::ACTION_P4 | ( | Plus | , |
| p0 | , | ||
| p1 | , | ||
| p2 | , | ||
| p3 | ) |
| testing::gmock_more_actions_test::ACTION_P5 | ( | Plus | , |
| p0 | , | ||
| p1 | , | ||
| p2 | , | ||
| p3 | , | ||
| p4 | ) |
| testing::gmock_more_actions_test::ACTION_P6 | ( | Plus | , |
| p0 | , | ||
| p1 | , | ||
| p2 | , | ||
| p3 | , | ||
| p4 | , | ||
| p5 | ) |
| testing::gmock_more_actions_test::ACTION_P7 | ( | Plus | , |
| p0 | , | ||
| p1 | , | ||
| p2 | , | ||
| p3 | , | ||
| p4 | , | ||
| p5 | , | ||
| p6 | ) |
| testing::gmock_more_actions_test::ACTION_P8 | ( | Plus | , |
| p0 | , | ||
| p1 | , | ||
| p2 | , | ||
| p3 | , | ||
| p4 | , | ||
| p5 | , | ||
| p6 | , | ||
| p7 | ) |
| testing::gmock_more_actions_test::ACTION_P9 | ( | Plus | , |
| p0 | , | ||
| p1 | , | ||
| p2 | , | ||
| p3 | , | ||
| p4 | , | ||
| p5 | , | ||
| p6 | , | ||
| p7 | , | ||
| p8 | ) |
| testing::gmock_more_actions_test::ACTION_TEMPLATE | ( | CreateNew | , |
| HAS_1_TEMPLATE_PARAMS(typename, T) | , | ||
| AND_0_VALUE_PARAMS() | ) |
| testing::gmock_more_actions_test::ACTION_TEMPLATE | ( | CreateNew | , |
| HAS_1_TEMPLATE_PARAMS(typename, T) | , | ||
| AND_1_VALUE_PARAMS(a0) | ) |
| testing::gmock_more_actions_test::ACTION_TEMPLATE | ( | MyDeleteArg | , |
| HAS_1_TEMPLATE_PARAMS(int, k) | , | ||
| AND_0_VALUE_PARAMS() | ) |
| 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) | ) |
| testing::gmock_more_actions_test::ACTION_TEMPLATE | ( | ReturnSmartPointer | , |
| HAS_1_TEMPLATE_PARAMS(template< typename Pointee > class, Pointer) | , | ||
| AND_1_VALUE_PARAMS(pointee) | ) |
| 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) | ) |
| testing::gmock_more_actions_test::ACTION_TEMPLATE | ( | ReturnSum | , |
| HAS_1_TEMPLATE_PARAMS(typename, Number) | , | ||
| AND_2_VALUE_PARAMS(v1, v2) | ) |
| testing::gmock_more_actions_test::ACTION_TEMPLATE | ( | ReturnSum | , |
| HAS_1_TEMPLATE_PARAMS(typename, Number) | , | ||
| AND_3_VALUE_PARAMS(v1, v2, v3) | ) |
| testing::gmock_more_actions_test::ACTION_TEMPLATE | ( | ReturnSum | , |
| HAS_2_TEMPLATE_PARAMS(typename, Number, int, k) | , | ||
| AND_4_VALUE_PARAMS(v1, v2, v3, v4) | ) |
| const char * testing::gmock_more_actions_test::Binary | ( | const char * | input, |
| short | n ) |
| bool testing::gmock_more_actions_test::ByConstRef | ( | const std::string & | s | ) |
|
inline |
|
inline |
| ConcatImplActionP3< std::string, T1, T2 > testing::gmock_more_actions_test::Concat | ( | const std::string & | a, |
| T1 | b, | ||
| T2 | c ) |
| ConcatImplActionP3< T1, int, T2 > testing::gmock_more_actions_test::Concat | ( | T1 | a, |
| int | b, | ||
| T2 | c ) |
| 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 ) |
| 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 ) |
| 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 ) |
| 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 ) |
| int testing::gmock_more_actions_test::Nullary | ( | ) |
| bool testing::gmock_more_actions_test::ReferencesGlobalDouble | ( | const double & | x | ) |
|
inline |
| int testing::gmock_more_actions_test::SumOf4 | ( | int | a, |
| int | b, | ||
| int | c, | ||
| int | d ) |
| int testing::gmock_more_actions_test::SumOf5 | ( | int | a, |
| int | b, | ||
| int | c, | ||
| int | d, | ||
| int | e ) |
| int testing::gmock_more_actions_test::SumOf6 | ( | int | a, |
| int | b, | ||
| int | c, | ||
| int | d, | ||
| int | e, | ||
| int | f ) |
| int testing::gmock_more_actions_test::Ternary | ( | int | x, |
| char | y, | ||
| short | z ) |
| testing::gmock_more_actions_test::TEST | ( | ActionMacroTest | , |
| CanDefineOverloadedActions | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionMacroTest | , |
| CanReferenceArgumentTuple | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionMacroTest | , |
| CanReferenceArgumentType | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionMacroTest | , |
| CanReferenceMockFunctionReturnType | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionMacroTest | , |
| CanReferenceMockFunctionType | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionMacroTest | , |
| WorksForConstReferenceArg | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionMacroTest | , |
| WorksForDifferentArgumentNumbers | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionMacroTest | , |
| WorksForNonConstReferenceArg | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionMacroTest | , |
| WorksInNamespace | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionMacroTest | , |
| WorksWhenNotReferencingArguments | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionMacroTest | , |
| WorksWhenReturningVoid | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionPMacroTest | , |
| CanReferenceArgumentAndParameterTypes | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionPMacroTest | , |
| DefinesParameterizedAction | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionPMacroTest | , |
| WorksInCompatibleMockFunction | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionPnMacroTest | , |
| CanExplicitlyInstantiateWithReferenceTypes | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionPnMacroTest | , |
| CanPartiallyRestrictParameterTypes | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionPnMacroTest | , |
| SimpleTypePromotion | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionPnMacroTest | , |
| TypesAreCorrect | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionPnMacroTest | , |
| WorksFor10Parameters | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionPnMacroTest | , |
| WorksFor3Parameters | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionPnMacroTest | , |
| WorksFor4Parameters | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionPnMacroTest | , |
| WorksFor5Parameters | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionPnMacroTest | , |
| WorksFor6Parameters | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionPnMacroTest | , |
| WorksFor7Parameters | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionPnMacroTest | , |
| WorksFor8Parameters | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionPnMacroTest | , |
| WorksFor9Parameters | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionTemplateTest | , |
| CanBeOverloadedOnNumberOfValueParameters | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionTemplateTest | , |
| WorksFor10TemplateParameters | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionTemplateTest | , |
| WorksFor10ValueParameters | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionTemplateTest | , |
| WorksForIntegralTemplateParams | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionTemplateTest | , |
| WorksForTemplateTemplateParameters | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionTemplateTest | , |
| WorksWithoutValueParam | ) |
| testing::gmock_more_actions_test::TEST | ( | ActionTemplateTest | , |
| WorksWithValueParams | ) |
| testing::gmock_more_actions_test::TEST | ( | DeleteArgActionTest | , |
| OneArg | ) |
| testing::gmock_more_actions_test::TEST | ( | DeleteArgActionTest | , |
| TenArgs | ) |
| testing::gmock_more_actions_test::TEST | ( | DoAllTest | , |
| EightActions | ) |
| testing::gmock_more_actions_test::TEST | ( | DoAllTest | , |
| FiveActions | ) |
| testing::gmock_more_actions_test::TEST | ( | DoAllTest | , |
| FourActions | ) |
| testing::gmock_more_actions_test::TEST | ( | DoAllTest | , |
| ImplicitlyConvertsActionArguments | ) |
| testing::gmock_more_actions_test::TEST | ( | DoAllTest | , |
| MoveOnlyArgs | ) |
| testing::gmock_more_actions_test::TEST | ( | DoAllTest | , |
| NineActions | ) |
| testing::gmock_more_actions_test::TEST | ( | DoAllTest | , |
| NoArgs | ) |
| testing::gmock_more_actions_test::TEST | ( | DoAllTest | , |
| SevenActions | ) |
| testing::gmock_more_actions_test::TEST | ( | DoAllTest | , |
| SixActions | ) |
| testing::gmock_more_actions_test::TEST | ( | DoAllTest | , |
| TenActions | ) |
| testing::gmock_more_actions_test::TEST | ( | DoAllTest | , |
| ThreeActions | ) |
| testing::gmock_more_actions_test::TEST | ( | DoAllTest | , |
| TwoActions | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
| ByConstReferenceFunction | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
| ByExplicitConstReferenceFunction | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
| ByPointerFunction | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
| Function0 | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
| Function10 | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
| Function5 | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
| Function6 | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
| Function7 | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
| Function8 | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
| Function9 | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
| FunctionWithCStringLiteral | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
| Functor1 | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
| Functor5 | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeArgumentTest | , |
| Functor6 | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeMethodTest | , |
| Binary | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeMethodTest | , |
| MethodThatTakes10Arguments | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeMethodTest | , |
| MethodThatTakes4Arguments | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeMethodTest | , |
| MethodThatTakes5Arguments | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeMethodTest | , |
| MethodThatTakes6Arguments | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeMethodTest | , |
| MethodThatTakes7Arguments | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeMethodTest | , |
| MethodThatTakes8Arguments | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeMethodTest | , |
| MethodThatTakes9Arguments | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeMethodTest | , |
| MethodWithCompatibleType | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeMethodTest | , |
| Nullary | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeMethodTest | , |
| Ternary | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeMethodTest | , |
| Unary | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
| Binary | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
| FunctionThatTakes10Arguments | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
| FunctionThatTakes4Arguments | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
| FunctionThatTakes5Arguments | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
| FunctionThatTakes6Arguments | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
| FunctionThatTakes7Arguments | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
| FunctionThatTakes8Arguments | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
| FunctionThatTakes9Arguments | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
| FunctionWithCompatibleType | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
| FunctionWithUnusedParameters | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
| Functor | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
| MethodWithUnusedParameters | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
| Nullary | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
| Ternary | ) |
| testing::gmock_more_actions_test::TEST | ( | InvokeTest | , |
| Unary | ) |
| testing::gmock_more_actions_test::TEST | ( | ReturnArgActionTest | , |
| WorksForMultiArgBoolArg0 | ) |
| testing::gmock_more_actions_test::TEST | ( | ReturnArgActionTest | , |
| WorksForMultiArgStringArg2 | ) |
| testing::gmock_more_actions_test::TEST | ( | ReturnArgActionTest | , |
| WorksForNonConstRefArg0 | ) |
| testing::gmock_more_actions_test::TEST | ( | ReturnArgActionTest | , |
| WorksForOneArgIntArg0 | ) |
| testing::gmock_more_actions_test::TEST | ( | ReturnPointeeTest | , |
| Works | ) |
| testing::gmock_more_actions_test::TEST | ( | SaveArgActionTest | , |
| WorksForCompatibleType | ) |
| testing::gmock_more_actions_test::TEST | ( | SaveArgActionTest | , |
| WorksForSameType | ) |
| testing::gmock_more_actions_test::TEST | ( | SaveArgPointeeActionTest | , |
| WorksForCompatibleType | ) |
| testing::gmock_more_actions_test::TEST | ( | SaveArgPointeeActionTest | , |
| WorksForSameType | ) |
| testing::gmock_more_actions_test::TEST | ( | SetArgRefereeActionTest | , |
| WorksForCompatibleType | ) |
| testing::gmock_more_actions_test::TEST | ( | SetArgRefereeActionTest | , |
| WorksForSameType | ) |
| testing::gmock_more_actions_test::TEST | ( | SetArgRefereeActionTest | , |
| WorksWithExtraArguments | ) |
| testing::gmock_more_actions_test::TEST | ( | SetArrayArgumentTest | , |
| SetsTheNthArray | ) |
| testing::gmock_more_actions_test::TEST | ( | SetArrayArgumentTest | , |
| SetsTheNthArrayWithConvertibleType | ) |
| testing::gmock_more_actions_test::TEST | ( | SetArrayArgumentTest | , |
| SetsTheNthArrayWithEmptyRange | ) |
| testing::gmock_more_actions_test::TEST | ( | SetArrayArgumentTest | , |
| SetsTheNthArrayWithIteratorArgument | ) |
| testing::gmock_more_actions_test::TEST | ( | WithArgTest | , |
| OneArg | ) |
| testing::gmock_more_actions_test::TEST | ( | WithoutArgsTest | , |
| NoArg | ) |
| bool testing::gmock_more_actions_test::Unary | ( | int | x | ) |
| bool testing::gmock_more_actions_test::g_done = false |
| const double testing::gmock_more_actions_test::g_double = 0 |