Lines Matching full:expectations
50 // .After(expectations)
106 // Base class for expectations.
125 // mockers, and all expectations.
128 // mock function Foo() is called, it needs to consult its expectations
132 // expectations when InSequence() is used, and thus affect which
145 // Verifies that all expectations on this mock function have been
226 // All expectations for this function mocker.
228 // It's undefined behavior to interleave expectations (EXPECT_CALLs
230 // expectations is important. Therefore it's a logic race condition
373 // Verifies and clears all expectations on the given mock object.
374 // If the expectations aren't satisfied, generates one or more
379 // Verifies all expectations on the given mock object and clears its
380 // default actions and expectations. Returns true if and only if the
435 // Verifies that all expectations on the given mock object have been
467 // expectations. The syntax:
472 // sets two expectations where the latter can only be matched after
548 // EXPECT_CALL() for setting the (partial) order of expectations. The
556 // sets three expectations where the last one can only be matched
613 // in which the expectations should match. They are copyable (we rely
635 // sequential expectations, e.g.
640 // // The following expectations must match in the order they appear.
671 // Base class for implementing expectations.
676 // 1. We need to store collections of expectations of different
678 // expectations in a sequence). Therefore these expectation objects
852 // The immediate pre-requisites (i.e. expectations that must be
1466 // The destructor verifies that all expectations on this mock
1705 // Prints a list of expectations that have been tried against the
1714 : "expectations, but none matched") in PrintTriedExpectationsLocked()
2048 // to x. This is useful for setting expectations on an overloaded
2136 // is how we block callers from setting expectations on overloaded methods.