Searched refs:ExpectationSet (Results 1 – 4 of 4) sorted by relevance
| /freebsd-14.2/contrib/googletest/googlemock/include/gmock/ |
| H A D | gmock-spec-builders.h | 96 class ExpectationSet; variable 514 friend class ExpectationSet; 560 class ExpectationSet { 569 ExpectationSet() = default; 984 TypedExpectation& After(const ExpectationSet& s1, const ExpectationSet& s2) { in After() 987 TypedExpectation& After(const ExpectationSet& s1, const ExpectationSet& s2, in After() 991 TypedExpectation& After(const ExpectationSet& s1, const ExpectationSet& s2, in After() 992 const ExpectationSet& s3, const ExpectationSet& s4) { in After() 995 TypedExpectation& After(const ExpectationSet& s1, const ExpectationSet& s2, in After() 996 const ExpectationSet& s3, const ExpectationSet& s4, in After() [all …]
|
| /freebsd-14.2/contrib/googletest/googlemock/test/ |
| H A D | gmock-spec-builders_test.cc | 1452 ExpectationSet es7 = es2; // Copy ctor. in TEST() 1471 ExpectationSet es1; in TEST() 1472 ExpectationSet es2 = Expectation(); in TEST() 1481 ExpectationSet es1; in TEST() 1493 ExpectationSet::const_iterator it2 = it1; in TEST() 1501 ExpectationSet es; in TEST() 1515 ExpectationSet es; in TEST() 1530 ExpectationSet es; in TEST() 1673 ExpectationSet es1 = EXPECT_CALL(a, DoA(4)); in TEST() 1674 ExpectationSet es2 = EXPECT_CALL(a, DoA(5)); in TEST() [all …]
|
| /freebsd-14.2/contrib/googletest/docs/reference/ |
| H A D | mocking.md | 189 [`Expectation`](#Expectation) or [`ExpectationSet`](#ExpectationSet) objects. 205 The `ExpectationSet` object is helpful when the number of prerequisites for an 209 using ::testing::ExpectationSet; 211 ExpectationSet all_inits; 574 ### ExpectationSet {#ExpectationSet} 576 `::testing::ExpectationSet` 583 using ::testing::ExpectationSet; 584 ExpectationSet my_expectations;
|
| /freebsd-14.2/contrib/googletest/googlemock/src/ |
| H A D | gmock-spec-builders.cc | 122 for (ExpectationSet::const_iterator it = in RetireAllPreRequisites() 144 for (ExpectationSet::const_iterator it = in AllPrerequisitesAreSatisfied() 156 void ExpectationBase::FindUnsatisfiedPrerequisites(ExpectationSet* result) const in FindUnsatisfiedPrerequisites() 164 for (ExpectationSet::const_iterator it = in FindUnsatisfiedPrerequisites()
|