Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for SetUpTestCase (0.22 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Sets up the stuff shared by all tests in this test case.
      //
      // Google Test will call Foo::SetUpTestCase() before running the first
      // test in test case Foo.  Hence a sub-class can define its own
      // SetUpTestCase() method to shadow the one defined in the super
      // class.
      static void SetUpTestCase() {}
    
      // Tears down the stuff shared by all tests in this test case.
      //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Sets up the stuff shared by all tests in this test case.
      //
      // Google Test will call Foo::SetUpTestCase() before running the first
      // test in test case Foo.  Hence a sub-class can define its own
      // SetUpTestCase() method to shadow the one defined in the super
      // class.
      static void SetUpTestCase() {}
    
      // Tears down the stuff shared by all tests in this test case.
      //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    GTEST_API_ AssertionResult IsHRESULTFailure(const char* expr,
                                                long hr);  // NOLINT
    
    #endif  // GTEST_OS_WINDOWS
    
    // Types of SetUpTestCase() and TearDownTestCase() functions.
    typedef void (*SetUpTestCaseFunc)();
    typedef void (*TearDownTestCaseFunc)();
    
    // Creates a new TestInfo object and registers it with Google Test;
    // returns the created object.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    GTEST_API_ AssertionResult IsHRESULTFailure(const char* expr,
                                                long hr);  // NOLINT
    
    #endif  // GTEST_OS_WINDOWS
    
    // Types of SetUpTestCase() and TearDownTestCase() functions.
    typedef void (*SetUpTestCaseFunc)();
    typedef void (*TearDownTestCaseFunc)();
    
    // Creates a new TestInfo object and registers it with Google Test;
    // returns the created object.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

                  test_name_stream.GetString().c_str(),
                  NULL,  // No type parameter.
                  PrintToString(*param_it).c_str(),
                  GetTestCaseTypeId(),
                  TestCase::SetUpTestCase,
                  TestCase::TearDownTestCase,
                  test_info->test_meta_factory->CreateTestFactory(*param_it));
            }  // for param_it
          }  // for gen_it
        }  // for test_it
      }  // RegisterTests
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

                  test_name_stream.GetString().c_str(),
                  NULL,  // No type parameter.
                  PrintToString(*param_it).c_str(),
                  GetTestCaseTypeId(),
                  TestCase::SetUpTestCase,
                  TestCase::TearDownTestCase,
                  test_info->test_meta_factory->CreateTestFactory(*param_it));
            }  // for param_it
          }  // for gen_it
        }  // for test_it
      }  // RegisterTests
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
Back to top