Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for GTEST_TEST_BOOLEAN_ (0.15 sec)

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

    #define EXPECT_TRUE(condition) \
      GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \
                          GTEST_NONFATAL_FAILURE_)
    #define EXPECT_FALSE(condition) \
      GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \
                          GTEST_NONFATAL_FAILURE_)
    #define ASSERT_TRUE(condition) \
      GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    #define EXPECT_TRUE(condition) \
      GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \
                          GTEST_NONFATAL_FAILURE_)
    #define EXPECT_FALSE(condition) \
      GTEST_TEST_BOOLEAN_(!(condition), #condition, true, false, \
                          GTEST_NONFATAL_FAILURE_)
    #define ASSERT_TRUE(condition) \
      GTEST_TEST_BOOLEAN_(condition, #condition, false, true, \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K 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

    // either a boolean expression or an AssertionResult. text is a textual
    // representation of expression as it was passed into the EXPECT_TRUE.
    #define GTEST_TEST_BOOLEAN_(expression, text, actual, expected, fail) \
      GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
      if (const ::testing::AssertionResult gtest_ar_ = \
          ::testing::AssertionResult(expression)) \
        ; \
      else \
    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

    // either a boolean expression or an AssertionResult. text is a textual
    // representation of expression as it was passed into the EXPECT_TRUE.
    #define GTEST_TEST_BOOLEAN_(expression, text, actual, expected, fail) \
      GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
      if (const ::testing::AssertionResult gtest_ar_ = \
          ::testing::AssertionResult(expression)) \
        ; \
      else \
    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