blob: fc1b284ef8bba8ae316d9bd4419576f526d9ff76 [file] [log] [blame]
#include "blob_interface.hpp"
#include <gmock/gmock.h>
class BlobInterfaceMock : public BlobInterface
{
public:
virtual ~BlobInterfaceMock() = default;
MOCK_METHOD0(getBlobList, std::vector<std::string>());
MOCK_METHOD1(getStat, StatResponse(const std::string&));
MOCK_METHOD2(openBlob,
std::uint16_t(const std::string&,
blobs::FirmwareBlobHandler::UpdateFlags));
};