Lines Matching refs:Forward
110 virtual void Forward(int distance) = 0;
124 and `PenDown()`, and control its movement using `Forward()`, `Turn()`, and
174 MOCK_METHOD(void, Forward, (int distance), (override));
353 EXPECT_CALL(turtle, Forward(100));
384 EXPECT_CALL(turtle, Forward(Ge(100)));
392 EXPECT_CALL(turtle, Forward);
540 EXPECT_CALL(turtle, Forward(_)); // #1
541 EXPECT_CALL(turtle, Forward(10)) // #2
545 If `Forward(10)` is called three times in a row, the third time it will be an
547 the third `Forward(10)` call is replaced by `Forward(20)`, then it would be OK,
586 EXPECT_CALL(turtle, Forward(100));