Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TypedTestCasePState (0.2 sec)

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

    // static as typically these macros are used in a .h file that can be
    // #included in multiple translation units linked together.
    # define TYPED_TEST_CASE_P(CaseName) \
      static ::testing::internal::TypedTestCasePState \
          GTEST_TYPED_TEST_CASE_P_STATE_(CaseName)
    
    # define TYPED_TEST_P(CaseName, TestName) \
      namespace GTEST_CASE_NAMESPACE_(CaseName) { \
      template <typename gtest_TypeParam_> \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    // static as typically these macros are used in a .h file that can be
    // #included in multiple translation units linked together.
    # define TYPED_TEST_CASE_P(CaseName) \
      static ::testing::internal::TypedTestCasePState \
          GTEST_TYPED_TEST_CASE_P_STATE_(CaseName)
    
    # define TYPED_TEST_P(CaseName, TestName) \
      namespace GTEST_CASE_NAMESPACE_(CaseName) { \
      template <typename gtest_TypeParam_> \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K 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_ bool SkipPrefix(const char* prefix, const char** pstr);
    
    #if GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P
    
    // State of the definition of a type-parameterized test case.
    class GTEST_API_ TypedTestCasePState {
     public:
      TypedTestCasePState() : registered_(false) {}
    
      // Adds the given test name to defined_test_names_ and return true
      // if the test case hasn't been registered; otherwise aborts the
      // program.
    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_ bool SkipPrefix(const char* prefix, const char** pstr);
    
    #if GTEST_HAS_TYPED_TEST || GTEST_HAS_TYPED_TEST_P
    
    // State of the definition of a type-parameterized test case.
    class GTEST_API_ TypedTestCasePState {
     public:
      TypedTestCasePState() : registered_(false) {}
    
      // Adds the given test name to defined_test_names_ and return true
      // if the test case hasn't been registered; otherwise aborts the
      // program.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
Back to top