Lines Matching refs:GetX
113 virtual int GetX() const = 0;
125 `GoTo()`. Finally, `GetX()` and `GetY()` tell you the current position of the
177 MOCK_METHOD(int, GetX, (), (const, override));
327 EXPECT_CALL(turtle, GetX())
334 says that the `turtle` object's `GetX()` method will be called five times, it
452 EXPECT_CALL(turtle, GetX())
458 says that `turtle.GetX()` will be called *exactly three times* (gMock inferred
494 EXPECT_CALL(turtle, GetX())
642 EXPECT_CALL(turtle, GetX())
647 If you think it says that `turtle.GetX()` will be called `n` times and will
649 said, expectations are sticky. So, the second time `turtle.GetX()` is called,
653 One correct way of saying that `turtle.GetX()` will return 10, 20, 30, ..., is
661 EXPECT_CALL(turtle, GetX())
679 EXPECT_CALL(turtle, GetX())
694 For example, in some tests we may not care about how many times `GetX()` and