blob: 2cff9a8efa0b47386879f47f25d7644869d34e08 [file] [log] [blame]
Patrick Venture030b1a82019-01-18 08:33:02 -08001#pragma once
2
3#include "io.hpp"
4
5#include <gmock/gmock.h>
6
7namespace host_tool
8{
9
10class HostIoInterfaceMock : public HostIoInterface
11{
12 public:
13 ~HostIoInterfaceMock() = default;
14
15 MOCK_METHOD3(write,
16 bool(const std::size_t, const std::size_t, const void* const));
17};
18
19} // namespace host_tool