Lines Matching refs:expectations
79 1. Set your expectations on the mock objects (How will they be called? What wil they do?).
81 …1. When a mock objects is destructed, Google Mock automatically verifies that all expectations on …
97 // ... other expectations ...
126 `EXPECT_CALL()` sets **expectations** on a mock method (How will it be
133 .After(expectations) *
419 By default, the expectations can be matched in _any_ order. If some
420 or all expectations must be matched in a given order, there are two
459 When you have a long chain of sequential expectations, it's easier to
482 To put many expectations in a sequence conveniently:
499 Google Mock will verify the expectations on a mock object when it is destructed, or you can do it e…
503 // Verifies and removes the expectations on mock_obj;
507 // Verifies and removes the expectations on mock_obj;