Lines Matching refs:expectation
1031 When a mock method is called, the *last* matching expectation that's still
1498 a mock method is called, but <em>doesn't imply any expectation on the method
1500 expectation that <em>the method will be called with the given arguments, for the
1552 `EXPECT_CALL()`), all invocations to it must match some expectation. If this
1672 unexpected behavior it is a compilation error to try to set an expectation on a
1686 tries to match a function call with an expectation, by default calls don't have
1689 the first and third, then the second expectation will be used.
1775 active. An expectation is active when created, and becomes inactive (aka
1796 Note that an expectation doesn't retire automatically when it's saturated. For
1810 If this is not what you want, you can ask an expectation to retire as soon as it
1892 the expectation is set, and `Return(std::ref(x))` will always return 0.
2705 Note: this example has a downside: namely, if the expectation is not satisfied,
2773 As usual, if you set an expectation without an action (i.e. the `.WillOnce()` or
2774 `.WillRepeatedly()` clause), when that expectation fires, the default action for
3036 The expectation spec says that the first `Bar("a")` call must happen before
3150 function with no expectation is called, a.k.a. an uninteresting call, which is