Lines Matching refs:Expectation
188 [`Expectation`](#Expectation) or [`ExpectationSet`](#ExpectationSet) objects.
196 using ::testing::Expectation;
198 Expectation init_x = EXPECT_CALL(my_mock, InitX());
199 Expectation init_y = EXPECT_CALL(my_mock, InitY());
303 EXPECT_CALL(my_mock, SetNumber(_)) // Expectation 1
305 EXPECT_CALL(my_mock, SetNumber(7)) // Expectation 2
558 ### Expectation {#Expectation}
560 `::testing::Expectation`
566 using ::testing::Expectation;
567 Expectation my_expectation = EXPECT_CALL(...);
579 Use the `+=` operator to add [`Expectation`](#Expectation) objects to the set: