Lines Matching full:im
27 createMockVersionConfigs(blobNames, &im, &tm)); in SetUp()
32 std::unordered_map<std::string, ImageHandlerMock*> im; member in ipmi_flash::VersionReadBlobTest
47 EXPECT_CALL(*im.at("blob0"), open(_, std::ios::in)).WillOnce(Return(true)); in TEST_F()
48 EXPECT_CALL(*im.at("blob0"), read(0, Ge(vector1.size()))) in TEST_F()
50 EXPECT_CALL(*im.at("blob0"), close()).Times(1); in TEST_F()
70 EXPECT_CALL(*im.at("blob0"), open(_, std::ios::in)).WillOnce(Return(true)); in TEST_F()
71 EXPECT_CALL(*im.at("blob0"), read(0, Ge(vector1.size()))) in TEST_F()
73 EXPECT_CALL(*im.at("blob0"), close()).Times(1); in TEST_F()
81 EXPECT_CALL(*im.at("blob0"), open(_, std::ios::in)).WillOnce(Return(true)); in TEST_F()
82 EXPECT_CALL(*im.at("blob0"), read(0, Ge(vector2.size()))) in TEST_F()
84 EXPECT_CALL(*im.at("blob0"), close()).Times(1); in TEST_F()
118 EXPECT_CALL(*im.at("blob0"), open(_, std::ios::in)).WillOnce(Return(false)); in TEST_F()
131 EXPECT_CALL(*im.at("blob0"), open(_, std::ios::in)).WillOnce(Return(true)); in TEST_F()
132 EXPECT_CALL(*im.at("blob0"), read(_, _)).WillOnce(Return(std::nullopt)); in TEST_F()
133 EXPECT_CALL(*im.at("blob0"), close()).Times(1); in TEST_F()