Sacado Package Browser (Single Doxygen Collection)  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Classes | Functions | Variables
testing::gmock_more_actions_test Namespace Reference

Classes

class  NullaryFunctor
 
class  VoidNullaryFunctor
 
struct  UnaryFunctor
 
struct  SumOf5Functor
 
struct  SumOf6Functor
 
class  Foo
 
class  DeletionTester
 

Functions

short Short (short n)
 
char Char (char ch)
 
int Nullary ()
 
void VoidNullary ()
 
bool Unary (int x)
 
const char * Plus1 (const char *s)
 
void VoidUnary (int)
 
bool ByConstRef (const std::string &s)
 
bool ReferencesGlobalDouble (const double &x)
 
std::string ByNonConstRef (std::string &s)
 
const char * Binary (const char *input, short n)
 
void VoidBinary (int, char)
 
int Ternary (int x, char y, short z)
 
void VoidTernary (int, char, bool)
 
int SumOf4 (int a, int b, int c, int d)
 
int SumOfFirst2 (int a, int b, Unused, Unused)
 
void VoidFunctionWithFourArguments (char, int, float, double)
 
std::string Concat4 (const char *s1, const char *s2, const char *s3, const char *s4)
 
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)
 
 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 (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)
 

Variables

bool g_done = false
 
const double g_double = 0
 

Function Documentation

short testing::gmock_more_actions_test::Short ( short  n)
inline

Definition at line 65 of file gmock-more-actions_test.cc.

char testing::gmock_more_actions_test::Char ( char  ch)
inline

Definition at line 66 of file gmock-more-actions_test.cc.

int testing::gmock_more_actions_test::Nullary ( )

Definition at line 69 of file gmock-more-actions_test.cc.

void testing::gmock_more_actions_test::VoidNullary ( )

Definition at line 77 of file gmock-more-actions_test.cc.

bool testing::gmock_more_actions_test::Unary ( int  x)

Definition at line 84 of file gmock-more-actions_test.cc.

const char* testing::gmock_more_actions_test::Plus1 ( const char *  s)

Definition at line 86 of file gmock-more-actions_test.cc.

void testing::gmock_more_actions_test::VoidUnary ( int  )

Definition at line 88 of file gmock-more-actions_test.cc.

bool testing::gmock_more_actions_test::ByConstRef ( const std::string &  s)

Definition at line 90 of file gmock-more-actions_test.cc.

bool testing::gmock_more_actions_test::ReferencesGlobalDouble ( const double &  x)

Definition at line 93 of file gmock-more-actions_test.cc.

std::string testing::gmock_more_actions_test::ByNonConstRef ( std::string &  s)

Definition at line 95 of file gmock-more-actions_test.cc.

const char* testing::gmock_more_actions_test::Binary ( const char *  input,
short  n 
)

Definition at line 101 of file gmock-more-actions_test.cc.

void testing::gmock_more_actions_test::VoidBinary ( int  ,
char   
)

Definition at line 103 of file gmock-more-actions_test.cc.

int testing::gmock_more_actions_test::Ternary ( int  x,
char  y,
short  z 
)

Definition at line 105 of file gmock-more-actions_test.cc.

void testing::gmock_more_actions_test::VoidTernary ( int  ,
char  ,
bool   
)

Definition at line 107 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 109 of file gmock-more-actions_test.cc.

int testing::gmock_more_actions_test::SumOfFirst2 ( int  a,
int  b,
Unused  ,
Unused   
)

Definition at line 111 of file gmock-more-actions_test.cc.

void testing::gmock_more_actions_test::VoidFunctionWithFourArguments ( char  ,
int  ,
float  ,
double   
)

Definition at line 113 of file gmock-more-actions_test.cc.

std::string testing::gmock_more_actions_test::Concat4 ( const char *  s1,
const char *  s2,
const char *  s3,
const char *  s4 
)

Definition at line 115 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 120 of file gmock-more-actions_test.cc.

std::string testing::gmock_more_actions_test::Concat5 ( const char *  s1,
const char *  s2,
const char *  s3,
const char *  s4,
const char *  s5 
)

Definition at line 128 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 133 of file gmock-more-actions_test.cc.

std::string testing::gmock_more_actions_test::Concat6 ( const char *  s1,
const char *  s2,
const char *  s3,
const char *  s4,
const char *  s5,
const char *  s6 
)

Definition at line 143 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 148 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 154 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 160 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 166 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeTest  ,
Nullary   
)

Definition at line 227 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeTest  ,
Unary   
)

Definition at line 233 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeTest  ,
Binary   
)

Definition at line 240 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeTest  ,
Ternary   
)

Definition at line 247 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeTest  ,
FunctionThatTakes4Arguments   
)

Definition at line 253 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeTest  ,
FunctionThatTakes5Arguments   
)

Definition at line 259 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeTest  ,
FunctionThatTakes6Arguments   
)

Definition at line 265 of file gmock-more-actions_test.cc.

const char* testing::gmock_more_actions_test::CharPtr ( const char *  s)
inline

Definition at line 273 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeTest  ,
FunctionThatTakes7Arguments   
)

Definition at line 276 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeTest  ,
FunctionThatTakes8Arguments   
)

Definition at line 287 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeTest  ,
FunctionThatTakes9Arguments   
)

Definition at line 298 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeTest  ,
FunctionThatTakes10Arguments   
)

Definition at line 310 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeTest  ,
FunctionWithUnusedParameters   
)

Definition at line 323 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeTest  ,
MethodWithUnusedParameters   
)

Definition at line 336 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeTest  ,
Functor   
)

Definition at line 347 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeTest  ,
FunctionWithCompatibleType   
)

Definition at line 353 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeMethodTest  ,
Nullary   
)

Definition at line 361 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeMethodTest  ,
Unary   
)

Definition at line 368 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeMethodTest  ,
Binary   
)

Definition at line 375 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeMethodTest  ,
Ternary   
)

Definition at line 384 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeMethodTest  ,
MethodThatTakes4Arguments   
)

Definition at line 391 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeMethodTest  ,
MethodThatTakes5Arguments   
)

Definition at line 398 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeMethodTest  ,
MethodThatTakes6Arguments   
)

Definition at line 405 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeMethodTest  ,
MethodThatTakes7Arguments   
)

Definition at line 414 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeMethodTest  ,
MethodThatTakes8Arguments   
)

Definition at line 426 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeMethodTest  ,
MethodThatTakes9Arguments   
)

Definition at line 438 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeMethodTest  ,
MethodThatTakes10Arguments   
)

Definition at line 451 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( InvokeMethodTest  ,
MethodWithCompatibleType   
)

Definition at line 465 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( WithoutArgsTest  ,
NoArg   
)

Definition at line 473 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( WithArgTest  ,
OneArg   
)

Definition at line 479 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( ReturnArgActionTest  ,
WorksForOneArgIntArg0   
)

Definition at line 485 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( ReturnArgActionTest  ,
WorksForMultiArgBoolArg0   
)

Definition at line 490 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( ReturnArgActionTest  ,
WorksForMultiArgStringArg2   
)

Definition at line 495 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( SaveArgActionTest  ,
WorksForSameType   
)

Definition at line 500 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( SaveArgActionTest  ,
WorksForCompatibleType   
)

Definition at line 507 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( SaveArgPointeeActionTest  ,
WorksForSameType   
)

Definition at line 514 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( SaveArgPointeeActionTest  ,
WorksForCompatibleType   
)

Definition at line 522 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( SetArgRefereeActionTest  ,
WorksForSameType   
)

Definition at line 530 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( SetArgRefereeActionTest  ,
WorksForCompatibleType   
)

Definition at line 537 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( SetArgRefereeActionTest  ,
WorksWithExtraArguments   
)

Definition at line 544 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( DeleteArgActionTest  ,
OneArg   
)

Definition at line 569 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( DeleteArgActionTest  ,
TenArgs   
)

Definition at line 578 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( SetArrayArgumentTest  ,
SetsTheNthArray   
)

Definition at line 611 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( SetArrayArgumentTest  ,
SetsTheNthArrayWithEmptyRange   
)

Definition at line 647 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( SetArrayArgumentTest  ,
SetsTheNthArrayWithConvertibleType   
)

Definition at line 663 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( SetArrayArgumentTest  ,
SetsTheNthArrayWithIteratorArgument   
)

Definition at line 678 of file gmock-more-actions_test.cc.

testing::gmock_more_actions_test::TEST ( ReturnPointeeTest  ,
Works   
)

Definition at line 688 of file gmock-more-actions_test.cc.

Variable Documentation

bool testing::gmock_more_actions_test::g_done = false

Definition at line 76 of file gmock-more-actions_test.cc.

const double testing::gmock_more_actions_test::g_double = 0

Definition at line 92 of file gmock-more-actions_test.cc.