Home | History | Annotate | Download | only in gtest

Lines Matching defs:AssertionResult

188 // the assertion wasn't successful, the AssertionResult object
202 // testing::AssertionResult IsEven(int n) {
229 // testing::AssertionResult IsEven(int n) {
253 // testing::AssertionResult IsEven(const char* expr, int n) {
266 class GTEST_API_ AssertionResult {
270 AssertionResult(const AssertionResult& other);
272 explicit AssertionResult(bool success) : success_(success) {}
278 AssertionResult operator!() const;
280 // Returns the text streamed into this AssertionResult. Test assertions
292 template <typename T> AssertionResult& operator<<(const T& value) {
299 AssertionResult& operator<<(
321 GTEST_DISALLOW_ASSIGN_(AssertionResult);
325 GTEST_API_ AssertionResult AssertionSuccess();
328 GTEST_API_ AssertionResult AssertionFailure();
332 GTEST_API_ AssertionResult AssertionFailure(const Message& msg);
1316 AssertionResult CmpHelperEQ(const char* expected_expression,
1344 GTEST_API_ AssertionResult CmpHelperEQ(const char* expected_expression,
1358 static AssertionResult Compare(const char* expected_expression,
1372 static AssertionResult Compare(const char* expected_expression,
1391 static AssertionResult Compare(
1409 static AssertionResult Compare(
1438 AssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \
1449 GTEST_API_ AssertionResult CmpHelper##op_name(\
1470 GTEST_API_ AssertionResult CmpHelperSTREQ(const char* expected_expression,
1478 GTEST_API_ AssertionResult CmpHelperSTRCASEEQ(const char* expected_expression,
1486 GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression,
1494 GTEST_API_ AssertionResult CmpHelperSTRCASENE(const char* s1_expression,
1503 GTEST_API_ AssertionResult CmpHelperSTREQ(const char* expected_expression,
1511 GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression,
1526 GTEST_API_ AssertionResult IsSubstring(
1529 GTEST_API_ AssertionResult IsSubstring(
1532 GTEST_API_ AssertionResult IsNotSubstring(
1535 GTEST_API_ AssertionResult IsNotSubstring(
1538 GTEST_API_ AssertionResult IsSubstring(
1541 GTEST_API_ AssertionResult IsNotSubstring(
1546 GTEST_API_ AssertionResult IsSubstring(
1549 GTEST_API_ AssertionResult IsNotSubstring(
1564 AssertionResult CmpHelperFloatingPointEQ(const char* expected_expression,
1592 GTEST_API_ AssertionResult DoubleNearPredFormat(const char* expr1,
1785 // AssertionResult. For more information on how to use AssertionResult with
1986 GTEST_API_ AssertionResult FloatLE(const char* expr1, const char* expr2,
1988 GTEST_API_ AssertionResult DoubleLE(const char* expr1, const char* expr2,