Home | History | Annotate | Download | only in test

Lines Matching refs:helper

1869 // Helper to allow easy testing of AllOf matchers with num parameters.
2045 // Helper to allow easy testing of AnyOf matchers with num parameters.
2361 MOCK_METHOD2(Helper, int(char x, int y));
2368 AllArgsHelper helper;
2369 ON_CALL(helper, Helper(_, _))
2372 EXPECT_CALL(helper, Helper(_, _));
2373 EXPECT_CALL(helper, Helper(_, _))
2377 EXPECT_EQ(1, helper.Helper('\1', 2));
2378 EXPECT_EQ(2, helper.Helper('a', 1));