Lines Matching full:times

81     .Times(cardinality)            // Can be used at most once
82 .InSequence(sequences...) // Can be used any number of times
83 .After(expectations...) // Can be used any number of times
84 .WillOnce(action) // Can be used any number of times
121 #### Times {#EXPECT_CALL.Times}
123 `.Times(`*`cardinality`*`)`
125 Specifies how many times the mock function call is expected.
132 | `AnyNumber()` | The function can be called any number of times. |
133 | `AtLeast(n)` | The function call is expected at least *n* times. |
134 | `AtMost(n)` | The function call is expected at most *n* times. |
135 | `Between(m, n)` | The function call is expected between *m* and *n* times, inclusive. |
136 | `Exactly(n)` or `n` | The function call is expected exactly *n* times. If *n* is 0, the call shou…
138 If the `Times` clause is omitted, GoogleTest infers the cardinality as follows:
142 cardinality is `Times(1)`.
144 *n* >= 1, the inferred cardinality is `Times(n)`.
146 *n* >= 0, the inferred cardinality is `Times(AtLeast(n))`.
148 The `Times` clause can be used at most once on an expectation.
176 The `InSequence` clause can be used any number of times on an expectation.
219 The `After` clause can be used any number of times on an expectation.
234 `Times` is not specified. See [`Times`](#EXPECT_CALL.Times).
238 to be called exactly 3 times and will return `1`, `2`, and `3` respectively on
250 The `WillOnce` clause can be used any number of times on an expectation. Unlike
268 when `Times` is not specified. See [`Times`](#EXPECT_CALL.Times).
304 .Times(AnyNumber());
306 .Times(2)