Lines Matching full:most
80 .With(multi_argument_matcher) // Can be used at most once
81 .Times(cardinality) // Can be used at most once
85 .WillRepeatedly(action) // Can be used at most once
86 .RetiresOnSaturation(); // Can be used at most once
118 The `With` clause can be used at most once on an expectation and must be the
134 | `AtMost(n)` | The function call is expected at most *n* times. |
148 The `Times` clause can be used at most once on an expectation.
251 `WillRepeatedly`, the action fed to each `WillOnce` call will be called at most
285 The `WillRepeatedly` clause can be used at most once on an expectation.
317 The `RetiresOnSaturation` clause can be used at most once on an expectation and
342 .With(multi_argument_matcher) // Can be used at most once
377 The `With` clause can be used at most once with each `ON_CALL` statement.