blob: b8ab5ac759b431b1d0eec08a9efb0f346480f028 [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{
9 public:
10 virtual ~ReadInterfaceMock() = default;
11
12 MOCK_METHOD0(read, ReadReturn());
13};