Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for ASSERT_DEATH_IF_SUPPORTED (0.42 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

    //                EXPECT_DEATH would accept.
    //   terminator - Must be an empty statement for EXPECT_DEATH_IF_SUPPORTED
    //                and a return statement for ASSERT_DEATH_IF_SUPPORTED.
    //                This ensures that ASSERT_DEATH_IF_SUPPORTED will not
    //                compile inside functions where ASSERT_DEATH doesn't
    //                compile.
    //
    //  The branch that has an always false condition is used to ensure that
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    # define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \
        EXPECT_DEATH(statement, regex)
    # define ASSERT_DEATH_IF_SUPPORTED(statement, regex) \
        ASSERT_DEATH(statement, regex)
    #else
    # define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \
        GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, )
    # define ASSERT_DEATH_IF_SUPPORTED(statement, regex) \
        GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, return)
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    # define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \
        EXPECT_DEATH(statement, regex)
    # define ASSERT_DEATH_IF_SUPPORTED(statement, regex) \
        ASSERT_DEATH(statement, regex)
    #else
    # define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \
        GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, )
    # define ASSERT_DEATH_IF_SUPPORTED(statement, regex) \
        GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, return)
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

    //                EXPECT_DEATH would accept.
    //   terminator - Must be an empty statement for EXPECT_DEATH_IF_SUPPORTED
    //                and a return statement for ASSERT_DEATH_IF_SUPPORTED.
    //                This ensures that ASSERT_DEATH_IF_SUPPORTED will not
    //                compile inside functions where ASSERT_DEATH doesn't
    //                compile.
    //
    //  The branch that has an always false condition is used to ensure that
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top