Lines Matching full:im
41 createMockLogConfigs(blobNames, &im, &tm)); in SetUp()
46 std::unordered_map<std::string, ImageHandlerMock*> im; member in ipmi_flash::LogReadBlobTest
61 EXPECT_CALL(*im.at("blob0"), open(_, std::ios::in)).WillOnce(Return(true)); in TEST_F()
62 EXPECT_CALL(*im.at("blob0"), read(0, Ge(vector1.size()))) in TEST_F()
64 EXPECT_CALL(*im.at("blob0"), close()).Times(1); in TEST_F()
84 EXPECT_CALL(*im.at("blob0"), open(_, std::ios::in)).WillOnce(Return(true)); in TEST_F()
85 EXPECT_CALL(*im.at("blob0"), read(0, Ge(vector1.size()))) in TEST_F()
87 EXPECT_CALL(*im.at("blob0"), close()).Times(1); in TEST_F()
95 EXPECT_CALL(*im.at("blob0"), open(_, std::ios::in)).WillOnce(Return(true)); in TEST_F()
96 EXPECT_CALL(*im.at("blob0"), read(0, Ge(vector2.size()))) in TEST_F()
98 EXPECT_CALL(*im.at("blob0"), close()).Times(1); in TEST_F()
132 EXPECT_CALL(*im.at("blob0"), open(_, std::ios::in)).WillOnce(Return(false)); in TEST_F()
145 EXPECT_CALL(*im.at("blob0"), open(_, std::ios::in)).WillOnce(Return(true)); in TEST_F()
146 EXPECT_CALL(*im.at("blob0"), read(_, _)).WillOnce(Return(std::nullopt)); in TEST_F()
147 EXPECT_CALL(*im.at("blob0"), close()).Times(1); in TEST_F()