Home | History | Annotate | Download | only in base

Lines Matching refs:EXPECT_CALL

333   EXPECT_CALL(static_func_mock_, VoidMethod0());
334 EXPECT_CALL(has_ref_, AddRef()).Times(5);
335 EXPECT_CALL(has_ref_, Release()).Times(5);
336 EXPECT_CALL(has_ref_, VoidMethod0()).Times(2);
337 EXPECT_CALL(has_ref_, VoidConstMethod0()).Times(2);
374 EXPECT_CALL(static_func_mock_, IntMethod0()).WillOnce(Return(1337));
375 EXPECT_CALL(has_ref_, AddRef()).Times(3);
376 EXPECT_CALL(has_ref_, Release()).Times(3);
377 EXPECT_CALL(has_ref_, IntMethod0()).WillOnce(Return(31337));
378 EXPECT_CALL(has_ref_, IntConstMethod0())
401 EXPECT_CALL(static_func_mock_, IntMethod0()).WillOnce(Return(1337));
402 EXPECT_CALL(has_ref_, AddRef()).Times(2);
403 EXPECT_CALL(has_ref_, Release()).Times(2);
404 EXPECT_CALL(has_ref_, IntMethod0()).WillOnce(Return(10));
405 EXPECT_CALL(has_ref_, IntConstMethod0()).WillOnce(Return(11));
406 EXPECT_CALL(no_ref_, IntMethod0()).WillOnce(Return(12));
407 EXPECT_CALL(no_ref_, IntConstMethod0()).WillOnce(Return(13));
589 EXPECT_CALL(no_ref_, VoidMethod0());
590 EXPECT_CALL(no_ref_, VoidConstMethod0()).Times(2);
612 EXPECT_CALL(no_ref_, VoidMethod0());
613 EXPECT_CALL(no_ref_, VoidConstMethod0()).Times(2);
675 EXPECT_CALL(has_ref_, AddRef()).Times(2);
676 EXPECT_CALL(has_ref_, Release()).Times(2);