Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GTEST_TEST_NO_FATAL_FAILURE_ (0.21 sec)

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

          ::testing::AssertionResult(expression)) \
        ; \
      else \
        fail(::testing::internal::GetBoolAssertionFailureMessage(\
            gtest_ar_, text, #actual, #expected).c_str())
    
    #define GTEST_TEST_NO_FATAL_FAILURE_(statement, fail) \
      GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
      if (::testing::internal::AlwaysTrue()) { \
        ::testing::internal::HasNewFatalFailureHelper gtest_fatal_failure_checker; \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    //   ASSERT_NO_FATAL_FAILURE(Process()) << "Process() failed";
    //
    #define ASSERT_NO_FATAL_FAILURE(statement) \
        GTEST_TEST_NO_FATAL_FAILURE_(statement, GTEST_FATAL_FAILURE_)
    #define EXPECT_NO_FATAL_FAILURE(statement) \
        GTEST_TEST_NO_FATAL_FAILURE_(statement, GTEST_NONFATAL_FAILURE_)
    
    // Causes a trace (including the source file path, the current line
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    //   ASSERT_NO_FATAL_FAILURE(Process()) << "Process() failed";
    //
    #define ASSERT_NO_FATAL_FAILURE(statement) \
        GTEST_TEST_NO_FATAL_FAILURE_(statement, GTEST_FATAL_FAILURE_)
    #define EXPECT_NO_FATAL_FAILURE(statement) \
        GTEST_TEST_NO_FATAL_FAILURE_(statement, GTEST_NONFATAL_FAILURE_)
    
    // Causes a trace (including the source file path, the current line
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

          ::testing::AssertionResult(expression)) \
        ; \
      else \
        fail(::testing::internal::GetBoolAssertionFailureMessage(\
            gtest_ar_, text, #actual, #expected).c_str())
    
    #define GTEST_TEST_NO_FATAL_FAILURE_(statement, fail) \
      GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
      if (::testing::internal::AlwaysTrue()) { \
        ::testing::internal::HasNewFatalFailureHelper gtest_fatal_failure_checker; \
    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