Lines Matching full:expectations
102 4. Set your expectations on the mock objects (How will they be called? What
107 expectations on it have been satisfied.
124 // ... other expectations ...
186 ## Setting Expectations {#ExpectCall}
188 `EXPECT_CALL()` sets **expectations** on a mock method (How will it be called?
196 .After(expectations) *
358 By default, the expectations can be matched in *any* order. If some or all
359 expectations must be matched in a given order, there are two ways to specify it.
398 When you have a long chain of sequential expectations, it's easier to specify
422 To put many expectations in a sequence conveniently:
441 gMock will verify the expectations on a mock object when it is destructed, or
447 // Verifies and removes the expectations on mock_obj;
451 // Verifies and removes the expectations on mock_obj;