Home | History | Annotate | Download | only in base

Lines Matching refs:EXPECT_CALL

257   EXPECT_CALL(static_func_mock_, VoidMethod0());
258 EXPECT_CALL(has_ref_, AddRef()).Times(3);
259 EXPECT_CALL(has_ref_, Release()).Times(3);
260 EXPECT_CALL(has_ref_, VoidMethod0());
261 EXPECT_CALL(has_ref_, VoidConstMethod0()).Times(2);
291 EXPECT_CALL(static_func_mock_, IntMethod0()).WillOnce(Return(1337));
292 EXPECT_CALL(has_ref_, AddRef()).Times(3);
293 EXPECT_CALL(has_ref_, Release()).Times(3);
294 EXPECT_CALL(has_ref_, IntMethod0()).WillOnce(Return(31337));
295 EXPECT_CALL(has_ref_, IntConstMethod0())
458 EXPECT_CALL(no_ref_, VoidMethod0());
459 EXPECT_CALL(no_ref_, VoidConstMethod0()).Times(2);