Patrick Venture | e772842 | 2018-11-14 20:16:33 -0800 | [diff] [blame] | 1 | #pragma once |
2 | |||||
3 | #include "lpc_interface.hpp" | ||||
4 | |||||
5 | #include <gmock/gmock.h> | ||||
6 | |||||
7 | namespace blobs | ||||
8 | { | ||||
9 | |||||
10 | class LpcInterfaceMock : public LpcMapperInterface | ||||
11 | { | ||||
12 | public: | ||||
13 | virtual ~LpcInterfaceMock() = default; | ||||
14 | |||||
15 | MOCK_METHOD2(mapWindow, | ||||
16 | std::pair<std::uint32_t, std::uint32_t>(std::uint32_t, | ||||
17 | std::uint32_t)); | ||||
18 | }; | ||||
19 | |||||
20 | } // namespace blobs |