Lines Matching full:expectations
68 // mockers, and all expectations.
116 ::std::vector<ExpectationBase*> expectations(1, this); in RetireAllPreRequisites()
117 while (!expectations.empty()) { in RetireAllPreRequisites()
118 ExpectationBase* exp = expectations.back(); in RetireAllPreRequisites()
119 expectations.pop_back(); in RetireAllPreRequisites()
127 expectations.push_back(next); in RetireAllPreRequisites()
138 ::std::vector<const ExpectationBase*> expectations(1, this); in AllPrerequisitesAreSatisfied()
139 while (!expectations.empty()) { in AllPrerequisitesAreSatisfied()
140 const ExpectationBase* exp = expectations.back(); in AllPrerequisitesAreSatisfied()
141 expectations.pop_back(); in AllPrerequisitesAreSatisfied()
148 expectations.push_back(next); in AllPrerequisitesAreSatisfied()
158 ::std::vector<const ExpectationBase*> expectations(1, this); in FindUnsatisfiedPrerequisites()
159 while (!expectations.empty()) { in FindUnsatisfiedPrerequisites()
160 const ExpectationBase* exp = expectations.back(); in FindUnsatisfiedPrerequisites()
161 expectations.pop_back(); in FindUnsatisfiedPrerequisites()
172 expectations.push_back(next); in FindUnsatisfiedPrerequisites()
522 // Verifies that all expectations on this mock function have been
553 // Deleting our expectations may trigger other mock objects to be deleted, for in VerifyAndClearExpectationsLocked()
556 // expectations within the context of the global mutex we may deadlock when in VerifyAndClearExpectationsLocked()
558 // expectations to delete, clear our set within the mutex, and then clear the in VerifyAndClearExpectationsLocked()
587 // expectations.
643 << " found at program exit. Expectations on a mock object are " in ~MockObjectRegistry()
645 "means that its expectations aren't verified, which is " in ~MockObjectRegistry()
732 // Verifies and clears all expectations on the given mock object. If
733 // the expectations aren't satisfied, generates one or more Google
741 // Verifies all expectations on the given mock object and clears its
742 // default actions and expectations. Returns true if and only if the
751 // Verifies and clears all expectations on the given mock object. If
752 // the expectations aren't satisfied, generates one or more Google
762 // Verifies and clears the expectations on each mock method in the in VerifyAndClearExpectationsLocked()