Lines Matching full:testing
50 using testing::ScopedFakeTestPartResultReporter;
51 using testing::TestPartResultArray;
53 using testing::internal::Notification;
54 using testing::internal::ThreadWithParam;
57 namespace posix = ::testing::internal::posix;
58 using testing::internal::String;
59 using testing::internal::scoped_ptr;
76 // The testing::Test:: prefix is necessary when calling
78 if (testing::Test::HasFatalFailure()) return;
92 class FailingParamTest : public testing::TestWithParam<int> {};
102 testing::Values(2));
121 // fixture, the testing::Test:: prefix is not needed.
150 // A helper function for testing SCOPED_TRACE.
156 // Another helper function for testing SCOPED_TRACE.
158 SCOPED_TRACE(testing::Message() << "n = " << n);
187 SCOPED_TRACE(testing::Message() << "i = " << i);
334 class NonFatalFailureInFixtureConstructorTest : public testing::Test {
359 class FatalFailureInFixtureConstructorTest : public testing::Test {
394 class NonFatalFailureInSetUpTest : public testing::Test {
419 class FatalFailureInSetUpTest : public testing::Test {
481 class DeathTestAndMultiThreadsTest : public testing::Test {
517 class MixedUpTestCaseTest : public testing::Test {
523 class MixedUpTestCaseWithSameTestNameTest : public testing::Test {
533 class MixedUpTestCaseTest : public testing::Test {
541 class MixedUpTestCaseWithSameTestNameTest : public testing::Test {
556 class TEST_F_before_TEST_in_same_test_case : public testing::Test {
565 class TEST_before_TEST_F_in_same_test_case : public testing::Test {
575 // Used for testing EXPECT_NONFATAL_FAILURE() and EXPECT_FATAL_FAILURE().
744 class TypedTest : public testing::Test {
747 TYPED_TEST_CASE(TypedTest, testing::Types<int>);
763 class TypedTestP : public testing::Test {
778 typedef testing::Types<unsigned char, unsigned int> UnsignedTypes;
797 class ATypedDeathTest : public testing::Test {
800 typedef testing::Types<int, double> NumericTypes;
815 class ATypeParamDeathTest : public testing::Test {
833 class ExpectFailureTest : public testing::Test {
949 // Two test environments for testing testing::AddGlobalTestEnvironment().
951 class FooEnvironment : public testing::Environment {
963 class BarEnvironment : public testing::Environment {
983 testing::GTEST_FLAG(print_time) = false;
992 testing::InitGoogleTest(&argc, argv);
998 if (testing::internal::GTEST_FLAG(internal_run_death_test) != "") {
1016 testing::AddGlobalTestEnvironment(new FooEnvironment);
1017 testing::AddGlobalTestEnvironment(new BarEnvironment);