Patrick Venture | 0088759 | 2018-12-11 10:57:06 -0800 | [diff] [blame] | 1 | #include "blob_interface.hpp" |
2 | |||||
3 | class BlobInterfaceMock : public BlobInterface | ||||
4 | { | ||||
5 | public: | ||||
6 | virtual ~BlobInterfaceMock() = default; | ||||
7 | MOCK_METHOD0(getBlobList, std::vector<std::string>()); | ||||
Patrick Venture | 0bf8bf0 | 2018-12-12 20:43:25 -0800 | [diff] [blame] | 8 | MOCK_METHOD1(getStat, StatResponse(const std::string&)); |
Patrick Venture | 0088759 | 2018-12-11 10:57:06 -0800 | [diff] [blame] | 9 | }; |