Lines Matching full:testing
42 // involved to set up the stage for testing Google Test using Google
45 // Currently, gtest_unittest takes ~11 seconds to run in the testing
73 // Sample functions/functors for testing unary predicate assertions.
101 testing::AssertionResult PredFormatFunction1(const char* e1,
104 return testing::AssertionSuccess();
106 testing::Message msg;
110 return testing::AssertionFailure(msg);
116 testing::AssertionResult operator()(const char* e1,
124 class Predicate1Test : public testing::Test {
461 // Sample functions/functors for testing binary predicate assertions.
490 testing::AssertionResult PredFormatFunction2(const char* e1,
495 return testing::AssertionSuccess();
497 testing::Message msg;
501 return testing::AssertionFailure(msg);
507 testing::AssertionResult operator()(const char* e1,
517 class Predicate2Test : public testing::Test {
891 // Sample functions/functors for testing ternary predicate assertions.
921 testing::AssertionResult PredFormatFunction3(const char* e1,
928 return testing::AssertionSuccess();
930 testing::Message msg;
934 return testing::AssertionFailure(msg);
940 testing::AssertionResult operator()(const char* e1,
952 class Predicate3Test : public testing::Test {
1363 // Sample functions/functors for testing 4-ary predicate assertions.
1394 testing::AssertionResult PredFormatFunction4(const char* e1,
1403 return testing::AssertionSuccess();
1405 testing::Message msg;
1409 return testing::AssertionFailure(msg);
1415 testing::AssertionResult operator()(const char* e1,
1429 class Predicate4Test : public testing::Test {
1877 // Sample functions/functors for testing 5-ary predicate assertions.
1909 testing::AssertionResult PredFormatFunction5(const char* e1,
1920 return testing::AssertionSuccess();
1922 testing::Message msg;
1926 return testing::AssertionFailure(msg);
1932 testing::AssertionResult operator()(const char* e1,
1948 class Predicate5Test : public testing::Test {