Home | History | Annotate | Download | only in gtest

Lines Matching defs:AssertionResult

7043 class AssertionResult;                 // Result of an assertion.
7149 GTEST_API_ AssertionResult EqFailure(const char* expected_expression,
7157 const AssertionResult& assertion_result,
7423 GTEST_API_ AssertionResult IsHRESULTSuccess(const char* expr,
7425 GTEST_API_ AssertionResult IsHRESULTFailure(const char* expr,
8066 // either a boolean expression or an AssertionResult. text is a textual
8070 if (const ::testing::AssertionResult gtest_ar_ = \
8071 ::testing::AssertionResult(expression)) \
17591 // the assertion wasn't successful, the AssertionResult object
17605 // testing::AssertionResult IsEven(int n) {
17632 // testing::AssertionResult IsEven(int n) {
17656 // testing::AssertionResult IsEven(const char* expr, int n) {
17669 class GTEST_API_ AssertionResult {
17673 AssertionResult(const AssertionResult& other);
17675 explicit AssertionResult(bool success) : success_(success) {}
17681 AssertionResult operator!() const;
17683 // Returns the text streamed into this AssertionResult. Test assertions
17695 template <typename T> AssertionResult& operator<<(const T& value) {
17702 AssertionResult& operator<<(
17724 GTEST_DISALLOW_ASSIGN_(AssertionResult);
17728 GTEST_API_ AssertionResult AssertionSuccess();
17731 GTEST_API_ AssertionResult AssertionFailure();
17735 GTEST_API_ AssertionResult AssertionFailure(const Message& msg);
18851 AssertionResult CmpHelperEQ(const char* expected_expression,
18879 GTEST_API_ AssertionResult CmpHelperEQ(const char* expected_expression,
18893 static AssertionResult Compare(const char* expected_expression,
18907 static AssertionResult Compare(const char* expected_expression,
18926 static AssertionResult Compare(
18944 static AssertionResult Compare(
18973 AssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \
18984 GTEST_API_ AssertionResult CmpHelper##op_name(\
19005 GTEST_API_ AssertionResult CmpHelperSTREQ(const char* expected_expression,
19013 GTEST_API_ AssertionResult CmpHelperSTRCASEEQ(const char* expected_expression,
19021 GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression,
19029 GTEST_API_ AssertionResult CmpHelperSTRCASENE(const char* s1_expression,
19038 GTEST_API_ AssertionResult CmpHelperSTREQ(const char* expected_expression,
19046 GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression,
19061 GTEST_API_ AssertionResult IsSubstring(
19064 GTEST_API_ AssertionResult IsSubstring(
19067 GTEST_API_ AssertionResult IsNotSubstring(
19070 GTEST_API_ AssertionResult IsNotSubstring(
19073 GTEST_API_ AssertionResult IsSubstring(
19076 GTEST_API_ AssertionResult IsNotSubstring(
19081 GTEST_API_ AssertionResult IsSubstring(
19084 GTEST_API_ AssertionResult IsNotSubstring(
19099 AssertionResult CmpHelperFloatingPointEQ(const char* expected_expression,
19127 GTEST_API_ AssertionResult DoubleNearPredFormat(const char* expr1,
19325 // AssertionResult. For more information on how to use AssertionResult with
19393 // text, and returns a testing::AssertionResult. See the definition
19418 if (const ::testing::AssertionResult gtest_ar = (expression)) \
19428 AssertionResult AssertPred1Helper(const char* pred_text,
19470 AssertionResult AssertPred2Helper(const char* pred_text,
19519 AssertionResult AssertPred3Helper(const char* pred_text,
19575 AssertionResult AssertPred4Helper(const char* pred_text,
19638 AssertionResult AssertPred5Helper(const char* pred_text,
19883 GTEST_API_ AssertionResult FloatLE(const char* expr1, const char* expr2,
19885 GTEST_API_ AssertionResult DoubleLE(const char* expr1, const char* expr2,