Home | History | Annotate | Download | only in test

Lines Matching full:bar3

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