Lines Matching full:testing
53 using testing::ScopedFakeTestPartResultReporter;
54 using testing::TestPartResultArray;
56 namespace posix = ::testing::internal::posix;
57 using testing::internal::String;
74 // The testing::Test:: prefix is necessary when calling
76 if (testing::Test::HasFatalFailure()) return;
105 // fixture, the testing::Test:: prefix is not needed.
134 // A helper function for testing SCOPED_TRACE.
140 // Another helper function for testing SCOPED_TRACE.
142 SCOPED_TRACE(testing::Message() << "n = " << n);
171 SCOPED_TRACE(testing::Message() << "i = " << i);
241 class NonFatalFailureInFixtureConstructorTest : public testing::Test {
266 class FatalFailureInFixtureConstructorTest : public testing::Test {
301 class NonFatalFailureInSetUpTest : public testing::Test {
326 class FatalFailureInSetUpTest : public testing::Test {
363 class ExceptionInFixtureCtorTest : public testing::Test {
398 class ExceptionInSetUpTest : public testing::Test {
426 class ExceptionInTestFunctionTest : public testing::Test {
459 class ExceptionInTearDownTest : public testing::Test {
494 class MixedUpTestCaseTest : public testing::Test {
500 class MixedUpTestCaseWithSameTestNameTest : public testing::Test {
510 class MixedUpTestCaseTest : public testing::Test {
518 class MixedUpTestCaseWithSameTestNameTest : public testing::Test {
533 class TEST_F_before_TEST_in_same_test_case : public testing::Test {
542 class TEST_before_TEST_F_in_same_test_case : public testing::Test {
552 // Used for testing EXPECT_NONFATAL_FAILURE() and EXPECT_FATAL_FAILURE().
721 class TypedTest : public testing::Test {
724 TYPED_TEST_CASE(TypedTest, testing::Types<int>);
740 class TypedTestP : public testing::Test {
755 typedef testing::Types<unsigned char, unsigned int> UnsignedTypes;
774 class ATypedDeathTest : public testing::Test {
777 typedef testing::Types<int, double> NumericTypes;
792 class ATypeParamDeathTest : public testing::Test {
810 class ExpectFailureTest : public testing::Test {
936 // Two test environments for testing testing::AddGlobalTestEnvironment().
938 class FooEnvironment : public testing::Environment {
950 class BarEnvironment : public testing::Environment {
972 testing::GTEST_FLAG(print_time) = false;
981 testing::InitGoogleTest(&argc, argv);
987 if (testing::internal::GTEST_FLAG(internal_run_death_test) != "") {
1005 testing::AddGlobalTestEnvironment(new FooEnvironment);
1006 testing::AddGlobalTestEnvironment(new BarEnvironment);