blob: 1e57771b080d1c9c9fcef861a5791971bb129984 [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>());
8};