Home | History | Annotate | Download | only in gtest

Lines Matching refs:AssertionResult

187 // 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 {
269 AssertionResult(const AssertionResult& other);
271 explicit AssertionResult(bool success) : success_(success) {}
277 AssertionResult operator!() const;
279 // Returns the text streamed into this AssertionResult. Test assertions
291 template <typename T> AssertionResult& operator<<(const T& value) {
298 AssertionResult& operator<<(
320 GTEST_DISALLOW_ASSIGN_(AssertionResult);
324 GTEST_API_ AssertionResult AssertionSuccess();
327 GTEST_API_ AssertionResult AssertionFailure();
331 GTEST_API_ AssertionResult AssertionFailure(const Message& msg);
1308 AssertionResult CmpHelperEQ(const char* expected_expression,
1338 GTEST_API_ AssertionResult CmpHelperEQ(const char* expected_expression,
1352 static AssertionResult Compare(const char* expected_expression,
1366 static AssertionResult Compare(const char* expected_expression,
1385 static AssertionResult Compare(
1403 static AssertionResult Compare(
1432 AssertionResult CmpHelper##op_name(const char* expr1, const char* expr2, \
1443 GTEST_API_ AssertionResult CmpHelper##op_name(\
1464 GTEST_API_ AssertionResult CmpHelperSTREQ(const char* expected_expression,
1472 GTEST_API_ AssertionResult CmpHelperSTRCASEEQ(const char* expected_expression,
1480 GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression,
1488 GTEST_API_ AssertionResult CmpHelperSTRCASENE(const char* s1_expression,
1497 GTEST_API_ AssertionResult CmpHelperSTREQ(const char* expected_expression,
1505 GTEST_API_ AssertionResult CmpHelperSTRNE(const char* s1_expression,
1520 GTEST_API_ AssertionResult IsSubstring(
1523 GTEST_API_ AssertionResult IsSubstring(
1526 GTEST_API_ AssertionResult IsNotSubstring(
1529 GTEST_API_ AssertionResult IsNotSubstring(
1532 GTEST_API_ AssertionResult IsSubstring(
1535 GTEST_API_ AssertionResult IsNotSubstring(
1540 GTEST_API_ AssertionResult IsSubstring(
1543 GTEST_API_ AssertionResult IsNotSubstring(
1558 AssertionResult CmpHelperFloatingPointEQ(const char* expected_expression,
1586 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,