Searched refs:AssertionSuccess (Results 1 – 13 of 13) sorted by relevance
| /freebsd-head/contrib/googletest/googletest/include/gtest/ |
| HD | gtest_pred_impl.h | 89 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()
|
| HD | gtest-assertion-result.h | 224 GTEST_API_ AssertionResult AssertionSuccess();
|
| HD | gtest.h | 1395 return AssertionSuccess(); in CmpHelperEQ() 1463 return AssertionSuccess(); \ 1588 return AssertionSuccess(); in CmpHelperFloatingPointEQ()
|
| /freebsd-head/contrib/googletest/googletest/src/ |
| HD | gtest-assertion-result.cc | 66 AssertionResult AssertionSuccess() { return AssertionResult(true); } in AssertionSuccess() function
|
| HD | gtest.cc | 1030 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/ |
| HD | gtest_pred_impl_unittest.cc | 95 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()
|
| HD | gtest_unittest.cc | 213 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 …]
|
| HD | gtest-unittest-api_test.cc | 136 return AssertionSuccess(); in IsNull()
|
| HD | googletest-printers-test.cc | 763 if (str.find(prefix, 0) == 0) return AssertionSuccess(); in HasPrefix()
|
| /freebsd-head/contrib/googletest/docs/reference/ |
| HD | testing.md | 418 [`AssertionSuccess()`](#AssertionSuccess) or 1403 ### AssertionSuccess {#AssertionSuccess} 1405 `AssertionResult testing::AssertionSuccess()`
|
| HD | assertions.md | 471 if (MutuallyPrime(m, n)) return testing::AssertionSuccess();
|
| /freebsd-head/contrib/googletest/docs/ |
| HD | advanced.md | 64 AssertionResult AssertionSuccess(); 83 return testing::AssertionSuccess(); 121 return testing::AssertionSuccess() << n << " is even";
|
| /freebsd-head/contrib/googletest/googlemock/include/gmock/ |
| HD | gmock-matchers.h | 1596 return AssertionSuccess();
|