Patrick Venture | 6246393 | 2018-06-08 18:47:46 -0700 | [diff] [blame] | 1 | #pragma once |
2 | |||||
3 | #include "interfaces.hpp" | ||||
4 | |||||
Patrick Venture | 40be36a | 2018-08-29 15:57:11 -0700 | [diff] [blame] | 5 | #include <gmock/gmock.h> |
6 | |||||
Patrick Venture | 6246393 | 2018-06-08 18:47:46 -0700 | [diff] [blame] | 7 | class ReadInterfaceMock : public ReadInterface |
8 | { | ||||
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 9 | public: |
10 | virtual ~ReadInterfaceMock() = default; | ||||
Patrick Venture | 6246393 | 2018-06-08 18:47:46 -0700 | [diff] [blame] | 11 | |
Patrick Venture | da4a5dd | 2018-08-31 09:42:48 -0700 | [diff] [blame] | 12 | MOCK_METHOD0(read, ReadReturn()); |
Patrick Venture | 6246393 | 2018-06-08 18:47:46 -0700 | [diff] [blame] | 13 | }; |