Home
last modified time | relevance | path

Searched refs:AssertionSuccess (Results 1 – 13 of 13) sorted by relevance

/freebsd-head/contrib/googletest/googletest/include/gtest/
HDgtest_pred_impl.h89 if (pred(v1)) return AssertionSuccess(); in AssertPred1Helper()
121 if (pred(v1, v2)) return AssertionSuccess(); in AssertPred2Helper()
158 if (pred(v1, v2, v3)) return AssertionSuccess(); in AssertPred3Helper()
198 if (pred(v1, v2, v3, v4)) return AssertionSuccess(); in AssertPred4Helper()
241 if (pred(v1, v2, v3, v4, v5)) return AssertionSuccess(); in AssertPred5Helper()
HDgtest-assertion-result.h224 GTEST_API_ AssertionResult AssertionSuccess();
HDgtest.h1395 return AssertionSuccess(); in CmpHelperEQ()
1463 return AssertionSuccess(); \
1588 return AssertionSuccess(); in CmpHelperFloatingPointEQ()
/freebsd-head/contrib/googletest/googletest/src/
HDgtest-assertion-result.cc66 AssertionResult AssertionSuccess() { return AssertionResult(true); } in AssertionSuccess() function
HDgtest.cc1030 return AssertionSuccess(); in HasOneFailure()
1668 if (diff <= abs_error) return AssertionSuccess(); in DoubleNearPredFormat()
1709 return AssertionSuccess(); in FloatingPointLE()
1715 return AssertionSuccess(); in FloatingPointLE()
1759 return AssertionSuccess(); in CmpHelperSTREQ()
1771 return AssertionSuccess(); in CmpHelperSTRCASEEQ()
1783 return AssertionSuccess(); in CmpHelperSTRNE()
1796 return AssertionSuccess(); in CmpHelperSTRCASENE()
1843 return AssertionSuccess(); in IsSubstringImpl()
1960 return AssertionSuccess(); in IsHRESULTSuccess()
[all …]
/freebsd-head/contrib/googletest/googletest/test/
HDgtest_pred_impl_unittest.cc95 if (PredFunction1(v1)) return testing::AssertionSuccess(); in PredFormatFunction1()
472 if (PredFunction2(v1, v2)) return testing::AssertionSuccess(); in PredFormatFunction2()
856 if (PredFunction3(v1, v2, v3)) return testing::AssertionSuccess(); in PredFormatFunction3()
1259 if (PredFunction4(v1, v2, v3, v4)) return testing::AssertionSuccess(); in PredFormatFunction4()
1677 if (PredFunction5(v1, v2, v3, v4, v5)) return testing::AssertionSuccess(); in PredFormatFunction5()
HDgtest_unittest.cc213 using testing::AssertionSuccess;
2189 return AssertionSuccess(); in AssertIsEven()
2201 return AssertionSuccess() << n << " is even"; in ResultIsEven()
2211 return AssertionSuccess(); in ResultIsEvenNoExplanation()
2240 return AssertionSuccess(); in AssertSumIsEven4()
2258 return AssertionSuccess(); in operator ()()
2465 return n > 0 ? AssertionSuccess() : AssertionFailure(Message() << "Failure"); in IsPositiveFormat()
2469 return x > 0 ? AssertionSuccess() : AssertionFailure(Message() << "Failure"); in IsPositiveFormat()
2474 return x < 0 ? AssertionSuccess() : AssertionFailure(Message() << "Failure"); in IsNegativeFormat()
2480 return x1 == x2 ? AssertionSuccess() in EqualsFormat()
[all …]
HDgtest-unittest-api_test.cc136 return AssertionSuccess(); in IsNull()
HDgoogletest-printers-test.cc763 if (str.find(prefix, 0) == 0) return AssertionSuccess(); in HasPrefix()
/freebsd-head/contrib/googletest/docs/reference/
HDtesting.md418 [`AssertionSuccess()`](#AssertionSuccess) or
1403 ### AssertionSuccess {#AssertionSuccess}
1405 `AssertionResult testing::AssertionSuccess()`
HDassertions.md471 if (MutuallyPrime(m, n)) return testing::AssertionSuccess();
/freebsd-head/contrib/googletest/docs/
HDadvanced.md64 AssertionResult AssertionSuccess();
83 return testing::AssertionSuccess();
121 return testing::AssertionSuccess() << n << " is even";
/freebsd-head/contrib/googletest/googlemock/include/gmock/
HDgmock-matchers.h1596 return AssertionSuccess();