Patrick Venture | a78e39f | 2018-11-06 18:37:06 -0800 | [diff] [blame^] | 1 | #pragma once |
2 | |||||
3 | #include "image_handler.hpp" | ||||
4 | |||||
5 | #include <gmock/gmock.h> | ||||
6 | |||||
7 | namespace blobs | ||||
8 | { | ||||
9 | |||||
10 | class ImageHandlerMock : public ImageHandlerInterface | ||||
11 | { | ||||
12 | public: | ||||
13 | virtual ~ImageHandlerMock() = default; | ||||
14 | |||||
15 | MOCK_METHOD1(open, bool(const std::string&)); | ||||
16 | }; | ||||
17 | |||||
18 | } // namespace blobs |