blob: d25e33219779d3f9b636c7f12b902d8a0eaa079f [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 WriteInterfaceMock : public WriteInterface
8{
Patrick Ventureda4a5dd2018-08-31 09:42:48 -07009 public:
10 virtual ~WriteInterfaceMock() = default;
Patrick Venture62463932018-06-08 18:47:46 -070011
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070012 WriteInterfaceMock(int64_t min, int64_t max) : WriteInterface(min, max)
Patrick Venturea83a3ec2020-08-04 09:52:05 -070013 {}
Patrick Venture62463932018-06-08 18:47:46 -070014
Patrick Ventureda4a5dd2018-08-31 09:42:48 -070015 MOCK_METHOD1(write, void(double));
Patrick Venture62463932018-06-08 18:47:46 -070016};