Lines Matching refs:Bar3
57 MOCK_METHOD2(Bar3, void(int x, int y));
80 EXPECT_CALL(foo_, Bar3(0, _)); in TEST_F()
81 foo_.Bar3(0, 0); // Expected call in TEST_F()
102 EXPECT_CALL(foo_, Bar3(0, _)); in TEST_F()
104 foo_.Bar3(1, 0); // Unexpected call in TEST_F()
105 foo_.Bar3(0, 0); // Expected call in TEST_F()
116 EXPECT_CALL(foo_, Bar3(0, _)); in TEST_F()
118 foo_.Bar3(0, 0); // Expected call in TEST_F()
119 foo_.Bar3(0, 1); // Excessive call in TEST_F()
127 foo_.Bar3(0, 1); // Uninteresting call in TEST_F()
264 EXPECT_CALL(*foo2, Bar3(_, _)).Times(AnyNumber()); in TEST_F()