Home | History | Annotate | Download | only in test

Lines Matching refs:testing

47 namespace testing {
53 } // namespace testing
55 using testing::GTEST_FLAG(death_test_style);
56 using testing::GTEST_FLAG(filter);
57 using testing::GTEST_FLAG(repeat);
61 // We need this when we are testing Google Test itself and therefore
67 if (::testing::internal::IsTrue(expected_val != actual_val)) {\
72 ::testing::internal::posix::Abort();\
74 } while (::testing::internal::AlwaysFalse())
83 class MyEnvironment : public testing::Environment {
116 EXPECT_DEATH_IF_SUPPORTED(::testing::internal::posix::Abort(), "");
119 EXPECT_DEATH_IF_SUPPORTED(::testing::internal::posix::Abort(), "");
127 class MyParamTest : public testing::TestWithParam<int> {};
137 testing::Range(0, kNumberOfParamTests));
230 testing::InitGoogleTest(&argc, argv);
231 testing::AddGlobalTestEnvironment(new MyEnvironment);