Lines Matching refs:rep
501 auto rep = std::make_shared<MockMCTPEndpoint>(); in TEST() local
502 EXPECT_CALL(*rep, describe()) in TEST()
504 EXPECT_CALL(*rep, eid()).WillRepeatedly(testing::Return(9)); in TEST()
505 EXPECT_CALL(*rep, network()).WillRepeatedly(testing::Return(1)); in TEST()
506 EXPECT_CALL(*rep, remove()).WillOnce(testing::Invoke([&]() { in TEST()
507 removeHandler(rep); in TEST()
509 EXPECT_CALL(*rep, subscribe(testing::_, testing::_, testing::_)) in TEST()
517 .WillOnce(testing::InvokeArgument<0>(std::error_code(), rep)); in TEST()
519 rep->remove(); in TEST()
522 EXPECT_CALL(*rep, device()).WillRepeatedly(testing::Return(rdev)); in TEST()
532 EXPECT_TRUE(testing::Mock::VerifyAndClearExpectations(rep.get())); in TEST()