16246393dSPatrick Venture #pragma once 26246393dSPatrick Venture 36246393dSPatrick Venture #include "interfaces.hpp" 46246393dSPatrick Venture 5*40be36acSPatrick Venture #include <gmock/gmock.h> 6*40be36acSPatrick Venture 76246393dSPatrick Venture class ReadInterfaceMock : public ReadInterface 86246393dSPatrick Venture { 96246393dSPatrick Venture public: 106246393dSPatrick Venture virtual ~ReadInterfaceMock() = default; 116246393dSPatrick Venture 126246393dSPatrick Venture MOCK_METHOD0(read, ReadReturn()); 136246393dSPatrick Venture }; 14