Lines Matching full:expectations
69 // mockers, and all expectations.
117 ::std::vector<ExpectationBase*> expectations(1, this); in RetireAllPreRequisites()
118 while (!expectations.empty()) { in RetireAllPreRequisites()
119 ExpectationBase* exp = expectations.back(); in RetireAllPreRequisites()
120 expectations.pop_back(); in RetireAllPreRequisites()
128 expectations.push_back(next); in RetireAllPreRequisites()
139 ::std::vector<const ExpectationBase*> expectations(1, this); in AllPrerequisitesAreSatisfied()
140 while (!expectations.empty()) { in AllPrerequisitesAreSatisfied()
141 const ExpectationBase* exp = expectations.back(); in AllPrerequisitesAreSatisfied()
142 expectations.pop_back(); in AllPrerequisitesAreSatisfied()
149 expectations.push_back(next); in AllPrerequisitesAreSatisfied()
159 ::std::vector<const ExpectationBase*> expectations(1, this); in FindUnsatisfiedPrerequisites()
160 while (!expectations.empty()) { in FindUnsatisfiedPrerequisites()
161 const ExpectationBase* exp = expectations.back(); in FindUnsatisfiedPrerequisites()
162 expectations.pop_back(); in FindUnsatisfiedPrerequisites()
173 expectations.push_back(next); in FindUnsatisfiedPrerequisites()
392 // Verifies that all expectations on this mock function have been
429 // Deleting our expectations may trigger other mock objects to be deleted, for in VerifyAndClearExpectationsLocked()
432 // expectations within the context of the global mutex we may deadlock when in VerifyAndClearExpectationsLocked()
434 // expectations to delete, clear our set within the mutex, and then clear the in VerifyAndClearExpectationsLocked()
463 // expectations.
519 << " found at program exit. Expectations on a mock object are " in ~MockObjectRegistry()
521 "means that its expectations aren't verified, which is " in ~MockObjectRegistry()
618 // Verifies and clears all expectations on the given mock object. If
619 // the expectations aren't satisfied, generates one or more Google
627 // Verifies all expectations on the given mock object and clears its
628 // default actions and expectations. Returns true if and only if the
637 // Verifies and clears all expectations on the given mock object. If
638 // the expectations aren't satisfied, generates one or more Google
648 // Verifies and clears the expectations on each mock method in the in VerifyAndClearExpectationsLocked()