Lines Matching defs:EXPECT_CALL

58 ### EXPECT_CALL {#EXPECT_CALL}
60 `EXPECT_CALL(`*`mock_object`*`,`*`method_name`*`(`*`matchers...`*`))`
64 that match the given matchers *`matchers...`*. `EXPECT_CALL` must precede any
79 EXPECT_CALL(mock_object, method_name(matchers...))
91 #### With {#EXPECT_CALL.With}
111 EXPECT_CALL(my_mock, SetPosition(_, _))
121 #### Times {#EXPECT_CALL.Times}
140 * If neither [`WillOnce`](#EXPECT_CALL.WillOnce) nor
141 [`WillRepeatedly`](#EXPECT_CALL.WillRepeatedly) are specified, the inferred
150 #### InSequence {#EXPECT_CALL.InSequence}
168 EXPECT_CALL(my_mock, Reset())
170 EXPECT_CALL(my_mock, GetSize())
172 EXPECT_CALL(my_mock, Describe())
180 #### After {#EXPECT_CALL.After}
198 Expectation init_x = EXPECT_CALL(my_mock, InitX());
199 Expectation init_y = EXPECT_CALL(my_mock, InitY());
200 EXPECT_CALL(my_mock, Describe())
213 all_inits += EXPECT_CALL(my_mock, InitElement(i));
215 EXPECT_CALL(my_mock, Describe())
221 #### WillOnce {#EXPECT_CALL.WillOnce}
234 `Times` is not specified. See [`Times`](#EXPECT_CALL.Times).
244 EXPECT_CALL(my_mock, GetNumber())
254 #### WillRepeatedly {#EXPECT_CALL.WillRepeatedly}
260 [`WillOnce`](#EXPECT_CALL.WillOnce) clauses, if any, have been performed.
268 when `Times` is not specified. See [`Times`](#EXPECT_CALL.Times).
277 EXPECT_CALL(my_mock, GetName())
280 EXPECT_CALL(my_mock, GetNumber())
287 #### RetiresOnSaturation {#EXPECT_CALL.RetiresOnSaturation}
303 EXPECT_CALL(my_mock, SetNumber(_)) // Expectation 1
305 EXPECT_CALL(my_mock, SetNumber(7)) // Expectation 2
401 on a matching `EXPECT_CALL` statement, if any. See the
402 [`WillOnce`](#EXPECT_CALL.WillOnce) and
403 [`WillRepeatedly`](#EXPECT_CALL.WillRepeatedly) clauses of `EXPECT_CALL`.
457 EXPECT_CALL(my_mock, DoSomething());
488 EXPECT_CALL(my_mock, DoSomething());
515 EXPECT_CALL(my_mock, DoSomething());
531 [`InSequence`](#EXPECT_CALL.InSequence) clause of `EXPECT_CALL` for usage.
549 EXPECT_CALL(...);
550 EXPECT_CALL(...);
552 EXPECT_CALL(...);
563 [`EXPECT_CALL`](#EXPECT_CALL):
567 Expectation my_expectation = EXPECT_CALL(...);
571 [`After`](#EXPECT_CALL.After) clause of `EXPECT_CALL`.
584 my_expectations += EXPECT_CALL(...);
588 [`After`](#EXPECT_CALL.After) clause of `EXPECT_CALL`.