Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for GTEST_DECLARE_string_ (0.2 sec)

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

    // from the start, running only a single death test, or "fast",
    // meaning that the child process will execute the test logic immediately
    // after forking.
    GTEST_DECLARE_string_(death_test_style);
    
    #if GTEST_HAS_DEATH_TEST
    
    namespace internal {
    
    // Returns a Boolean value indicating whether the caller is currently
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

    #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_
    
    #include "gtest/internal/gtest-internal.h"
    
    #include <stdio.h>
    
    namespace testing {
    namespace internal {
    
    GTEST_DECLARE_string_(internal_run_death_test);
    
    // Names of the flags (needed for parsing Google Test flags).
    const char kDeathTestStyleFlag[] = "death_test_style";
    const char kDeathTestUseFork[] = "death_test_use_fork";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    // from the start, running only a single death test, or "fast",
    // meaning that the child process will execute the test logic immediately
    // after forking.
    GTEST_DECLARE_string_(death_test_style);
    
    #if GTEST_HAS_DEATH_TEST
    
    namespace internal {
    
    // Returns a Boolean value indicating whether the caller is currently
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

    #define GTEST_INCLUDE_GTEST_INTERNAL_GTEST_DEATH_TEST_INTERNAL_H_
    
    #include "gtest/internal/gtest-internal.h"
    
    #include <stdio.h>
    
    namespace testing {
    namespace internal {
    
    GTEST_DECLARE_string_(internal_run_death_test);
    
    // Names of the flags (needed for parsing Google Test flags).
    const char kDeathTestStyleFlag[] = "death_test_style";
    const char kDeathTestUseFork[] = "death_test_use_fork";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // "yes" to enable colors, "no" (disable colors), or "auto" (the default)
    // to let Google Test decide.
    GTEST_DECLARE_string_(color);
    
    // This flag sets up the filter to select by name using a glob pattern
    // the tests to run. If the filter is not given all tests are executed.
    GTEST_DECLARE_string_(filter);
    
    // This flag causes the Google Test to list tests. None of the tests listed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // "yes" to enable colors, "no" (disable colors), or "auto" (the default)
    // to let Google Test decide.
    GTEST_DECLARE_string_(color);
    
    // This flag sets up the filter to select by name using a glob pattern
    // the tests to run. If the filter is not given all tests are executed.
    GTEST_DECLARE_string_(filter);
    
    // This flag causes the Google Test to list tests. None of the tests listed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // Macros for declaring flags.
    #define GTEST_DECLARE_bool_(name) GTEST_API_ extern bool GTEST_FLAG(name)
    #define GTEST_DECLARE_int32_(name) \
        GTEST_API_ extern ::testing::internal::Int32 GTEST_FLAG(name)
    #define GTEST_DECLARE_string_(name) \
        GTEST_API_ extern ::std::string GTEST_FLAG(name)
    
    // Macros for defining flags.
    #define GTEST_DEFINE_bool_(name, default_val, doc) \
        GTEST_API_ bool GTEST_FLAG(name) = (default_val)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // Macros for declaring flags.
    #define GTEST_DECLARE_bool_(name) GTEST_API_ extern bool GTEST_FLAG(name)
    #define GTEST_DECLARE_int32_(name) \
        GTEST_API_ extern ::testing::internal::Int32 GTEST_FLAG(name)
    #define GTEST_DECLARE_string_(name) \
        GTEST_API_ extern ::std::string GTEST_FLAG(name)
    
    // Macros for defining flags.
    #define GTEST_DEFINE_bool_(name, default_val, doc) \
        GTEST_API_ bool GTEST_FLAG(name) = (default_val)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
Back to top