Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for AddTestName (0.19 sec)

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

        typedef gtest_TypeParam_ TypeParam; \
        virtual void TestBody(); \
      }; \
      static bool gtest_##TestName##_defined_ GTEST_ATTRIBUTE_UNUSED_ = \
          GTEST_TYPED_TEST_CASE_P_STATE_(CaseName).AddTestName(\
              __FILE__, __LINE__, #CaseName, #TestName); \
      } \
      template <typename gtest_TypeParam_> \
      void GTEST_CASE_NAMESPACE_(CaseName)::TestName<gtest_TypeParam_>::TestBody()
    
    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

        typedef gtest_TypeParam_ TypeParam; \
        virtual void TestBody(); \
      }; \
      static bool gtest_##TestName##_defined_ GTEST_ATTRIBUTE_UNUSED_ = \
          GTEST_TYPED_TEST_CASE_P_STATE_(CaseName).AddTestName(\
              __FILE__, __LINE__, #CaseName, #TestName); \
      } \
      template <typename gtest_TypeParam_> \
      void GTEST_CASE_NAMESPACE_(CaseName)::TestName<gtest_TypeParam_>::TestBody()
    
    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

      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.
      bool AddTestName(const char* file, int line, const char* case_name,
                       const char* test_name) {
        if (registered_) {
          fprintf(stderr, "%s Test %s must be defined before "
    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

      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.
      bool AddTestName(const char* file, int line, const char* case_name,
                       const char* test_name) {
        if (registered_) {
          fprintf(stderr, "%s Test %s must be defined before "
    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