blob: 1d2c82d0e1ad467dba3065361a07526d678bc919 [file] [log] [blame]
Patrick Venture62463932018-06-08 18:47:46 -07001#pragma once
2
3#include "interfaces.hpp"
4
Patrick Venture40be36a2018-08-29 15:57:11 -07005#include <gmock/gmock.h>
6
Patrick Venture62463932018-06-08 18:47:46 -07007class ReadInterfaceMock : public ReadInterface
8{
Patrick Ventureda4a5dd2018-08-31 09:42:48 -07009 public:
10 virtual ~ReadInterfaceMock() = default;
Patrick Venture62463932018-06-08 18:47:46 -070011
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070012 MOCK_METHOD0(read, ReadReturn());
Patrick Venture62463932018-06-08 18:47:46 -070013};