Lines Matching refs:testing
53 using testing::ScopedFakeTestPartResultReporter;
54 using testing::TestPartResultArray;
56 using testing::internal::Notification;
57 using testing::internal::ThreadWithParam;
60 namespace posix = ::testing::internal::posix;
61 using testing::internal::scoped_ptr;
78 // The testing::Test:: prefix is necessary when calling
80 if (testing::Test::HasFatalFailure()) return;
94 class FailingParamTest : public testing::TestWithParam<int> {};
104 testing::Values(2));
133 // fixture, the testing::Test:: prefix is not needed.
162 // A helper function for testing SCOPED_TRACE.
168 // Another helper function for testing SCOPED_TRACE.
170 SCOPED_TRACE(testing::Message() << "n = " << n);
199 SCOPED_TRACE(testing::Message() << "i = " << i);
346 class NonFatalFailureInFixtureConstructorTest : public testing::Test {
371 class FatalFailureInFixtureConstructorTest : public testing::Test {
407 class NonFatalFailureInSetUpTest : public testing::Test {
432 class FatalFailureInSetUpTest : public testing::Test {
494 class DeathTestAndMultiThreadsTest : public testing::Test {
530 class MixedUpTestCaseTest : public testing::Test {
536 class MixedUpTestCaseWithSameTestNameTest : public testing::Test {
546 class MixedUpTestCaseTest : public testing::Test {
554 class MixedUpTestCaseWithSameTestNameTest : public testing::Test {
569 class TEST_F_before_TEST_in_same_test_case : public testing::Test {
578 class TEST_before_TEST_F_in_same_test_case : public testing::Test {
588 // Used for testing EXPECT_NONFATAL_FAILURE() and EXPECT_FATAL_FAILURE().
757 class TypedTest : public testing::Test {
760 TYPED_TEST_CASE(TypedTest, testing::Types<int>);
776 class TypedTestP : public testing::Test {
791 typedef testing::Types<unsigned char, unsigned int> UnsignedTypes;
810 class ATypedDeathTest : public testing::Test {
813 typedef testing::Types<int, double> NumericTypes;
828 class ATypeParamDeathTest : public testing::Test {
846 class ExpectFailureTest : public testing::Test {
962 // Two test environments for testing testing::AddGlobalTestEnvironment().
964 class FooEnvironment : public testing::Environment {
976 class BarEnvironment : public testing::Environment {
996 testing::GTEST_FLAG(print_time) = false;
1005 testing::InitGoogleTest(&argc, argv);
1012 if (testing::internal::GTEST_FLAG(internal_run_death_test) != "") {
1030 testing::AddGlobalTestEnvironment(new FooEnvironment);
1031 testing::AddGlobalTestEnvironment(new BarEnvironment);