blob: 8218ed5a34ea1febe460210a100f466e78b17997 [file] [log] [blame]
Patrick Venture00887592018-12-11 10:57:06 -08001#include "blob_interface.hpp"
2
3class BlobInterfaceMock : public BlobInterface
4{
5 public:
6 virtual ~BlobInterfaceMock() = default;
7 MOCK_METHOD0(getBlobList, std::vector<std::string>());
Patrick Venture0bf8bf02018-12-12 20:43:25 -08008 MOCK_METHOD1(getStat, StatResponse(const std::string&));
Patrick Venture00887592018-12-11 10:57:06 -08009};