blob: 8218ed5a34ea1febe460210a100f466e78b17997 [file] [log] [blame]
#include "blob_interface.hpp"
class BlobInterfaceMock : public BlobInterface
{
public:
virtual ~BlobInterfaceMock() = default;
MOCK_METHOD0(getBlobList, std::vector<std::string>());
MOCK_METHOD1(getStat, StatResponse(const std::string&));
};