Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for REGISTER_TYPED_TEST_CASE_P (0.28 sec)

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

    // Now the tricky part: you need to register all test patterns before
    // you can instantiate them.  The first argument of the macro is the
    // test case name; the rest are the names of the tests in this test
    // case.
    REGISTER_TYPED_TEST_CASE_P(FooTest,
                               DoesBlah, HasPropertyA);
    
    // Finally, you are free to instantiate the pattern with the types you
    // want.  If you put the above code in a header file, you can #include
    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

    // Now the tricky part: you need to register all test patterns before
    // you can instantiate them.  The first argument of the macro is the
    // test case name; the rest are the names of the tests in this test
    // case.
    REGISTER_TYPED_TEST_CASE_P(FooTest,
                               DoesBlah, HasPropertyA);
    
    // Finally, you are free to instantiate the pattern with the types you
    // want.  If you put the above code in a header file, you can #include
    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

      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 "
                  "REGISTER_TYPED_TEST_CASE_P(%s, ...).\n",
                  FormatFileLocation(file, line).c_str(), test_name, case_name);
          fflush(stderr);
          posix::Abort();
        }
        defined_test_names_.insert(test_name);
        return true;
    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

      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 "
                  "REGISTER_TYPED_TEST_CASE_P(%s, ...).\n",
                  FormatFileLocation(file, line).c_str(), test_name, case_name);
          fflush(stderr);
          posix::Abort();
        }
        defined_test_names_.insert(test_name);
        return true;
    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