Searched refs:AssertionResult (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10.1/llvmCore-3425.0.34/utils/unittest/googletest/include/gtest/
H A Dgtest.h187 // the assertion wasn't successful, the AssertionResult object
201 // testing::AssertionResult IsEven(int n) {
228 // testing::AssertionResult IsEven(int n) {
252 // testing::AssertionResult IsEven(const char* expr, int n) {
265 class GTEST_API_ AssertionResult { class in namespace:testing
269 AssertionResult(const AssertionResult& other);
271 explicit AssertionResult(bool success) : success_(success) {} function in class:testing::AssertionResult
277 AssertionResult operator!() const;
279 // Returns the text streamed into this AssertionResult
[all...]
H A Dgtest_pred_impl.h52 // text, and returns a testing::AssertionResult. See the definition
77 if (const ::testing::AssertionResult gtest_ar = (expression)) \
87 AssertionResult AssertPred1Helper(const char* pred_text,
129 AssertionResult AssertPred2Helper(const char* pred_text,
178 AssertionResult AssertPred3Helper(const char* pred_text,
234 AssertionResult AssertPred4Helper(const char* pred_text,
297 AssertionResult AssertPred5Helper(const char* pred_text,
/macosx-10.10.1/llvmCore-3425.0.34/utils/unittest/googletest/
H A Dgtest.cc605 AssertionResult HasOneFailure(const char* /* results_expr */,
948 // AssertionResult constructors.
950 AssertionResult::AssertionResult(const AssertionResult& other) function in class:testing::AssertionResult
958 AssertionResult AssertionResult::operator!() const {
959 AssertionResult negation(!success_);
966 AssertionResult AssertionSuccess() {
967 return AssertionResult(tru
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h126 class AssertionResult; // Result of an assertion.
293 GTEST_API_ AssertionResult EqFailure(const char* expected_expression,
301 const AssertionResult& assertion_result,
557 GTEST_API_ AssertionResult IsHRESULTSuccess(const char* expr,
559 GTEST_API_ AssertionResult IsHRESULTFailure(const char* expr,
1193 // either a boolean expression or an AssertionResult. text is a textual
1197 if (const ::testing::AssertionResult gtest_ar_ = \
1198 ::testing::AssertionResult(expression)) \

Completed in 114 milliseconds