Lines Matching refs: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 return testing::AssertionFailure()
115 testing::AssertionResult operator()(const char* e1,
123 class Predicate1Test : public testing::Test {
460 // Sample functions/functors for testing binary predicate assertions.
489 testing::AssertionResult PredFormatFunction2(const char* e1,
494 return testing::AssertionSuccess();
496 return testing::AssertionFailure()
505 testing::AssertionResult operator()(const char* e1,
515 class Predicate2Test : public testing::Test {
889 // Sample functions/functors for testing ternary predicate assertions.
919 testing::AssertionResult PredFormatFunction3(const char* e1,
926 return testing::AssertionSuccess();
928 return testing::AssertionFailure()
937 testing::AssertionResult operator()(const char* e1,
949 class Predicate3Test : public testing::Test {
1360 // Sample functions/functors for testing 4-ary predicate assertions.
1391 testing::AssertionResult PredFormatFunction4(const char* e1,
1400 return testing::AssertionSuccess();
1402 return testing::AssertionFailure()
1411 testing::AssertionResult operator()(const char* e1,
1425 class Predicate4Test : public testing::Test {
1873 // Sample functions/functors for testing 5-ary predicate assertions.
1905 testing::AssertionResult PredFormatFunction5(const char* e1,
1916 return testing::AssertionSuccess();
1918 return testing::AssertionFailure()
1927 testing::AssertionResult operator()(const char* e1,
1943 class Predicate5Test : public testing::Test {