Home | History | Annotate | Download | only in gtest

Lines Matching refs:AssertionResult

178 // the assertion wasn't successful, the AssertionResult object
192 // testing::AssertionResult IsEven(int n) {
219 // testing::AssertionResult IsEven(int n) {
243 // testing::AssertionResult IsEven(const char* expr, int n) {
256 class GTEST_API_ AssertionResult {
260 AssertionResult(const AssertionResult& other);
262 explicit AssertionResult(bool success) : success_(success) {}
268 AssertionResult operator!() const;
270 // Returns the text streamed into this AssertionResult. Test assertions
282 template <typename T> AssertionResult& operator<<(const T& value) {
289 AssertionResult& operator<<(
311 GTEST_DISALLOW_ASSIGN_(AssertionResult);
315 GTEST_API_ AssertionResult AssertionSuccess();
318 GTEST_API_ AssertionResult AssertionFailure();
322 GTEST_API_ AssertionResult AssertionFailure(const Message& msg);
1438 AssertionResult CmpHelperEQ(const char* expected_expression,
1466 GTEST_API_ AssertionResult CmpHelperEQ(const char* expected_expression,
1480 static AssertionResult Compare(const char* expected_expression,
1494 static AssertionResult Compare(const char* expected_expression,
1513 static AssertionResult Compare(
1531 static AssertionResult Compare(
1560 AssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \
1571 GTEST_API_ AssertionResult CmpHelper##op_name(\
1592 GTEST_API_ AssertionResult CmpHelperSTREQ(const char* expected_expression,
1600 GTEST_API_ AssertionResult CmpHelperSTRCASEEQ(const char* expected_expression,
1608 GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression,
1616 GTEST_API_ AssertionResult CmpHelperSTRCASENE(const char* s1_expression,
1625 GTEST_API_ AssertionResult CmpHelperSTREQ(const char* expected_expression,
1633 GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression,
1648 GTEST_API_ AssertionResult IsSubstring(
1651 GTEST_API_ AssertionResult IsSubstring(
1654 GTEST_API_ AssertionResult IsNotSubstring(
1657 GTEST_API_ AssertionResult IsNotSubstring(
1660 GTEST_API_ AssertionResult IsSubstring(
1663 GTEST_API_ AssertionResult IsNotSubstring(
1668 GTEST_API_ AssertionResult IsSubstring(
1671 GTEST_API_ AssertionResult IsNotSubstring(
1686 AssertionResult CmpHelperFloatingPointEQ(const char* expected_expression,
1714 GTEST_API_ AssertionResult DoubleNearPredFormat(const char* expr1,
1912 // AssertionResult. For more information on how to use AssertionResult with
2113 GTEST_API_ AssertionResult FloatLE(const char* expr1, const char* expr2,
2115 GTEST_API_ AssertionResult DoubleLE(const char* expr1, const char* expr2,