blob: 79f4e508c49e431e4ceb20ec14c02cc00a203bba [file] [log] [blame]
Patrick Venturee7728422018-11-14 20:16:33 -08001#pragma once
2
Patrick Venture5251da92019-01-17 11:25:26 -08003#include "window_hw_interface.hpp"
Patrick Venturee7728422018-11-14 20:16:33 -08004
5#include <gmock/gmock.h>
6
7namespace blobs
8{
9
Patrick Venture5251da92019-01-17 11:25:26 -080010class HardwareInterfaceMock : public HardwareMapperInterface
Patrick Venturee7728422018-11-14 20:16:33 -080011{
12 public:
Patrick Venture5251da92019-01-17 11:25:26 -080013 virtual ~HardwareInterfaceMock() = default;
Patrick Venturee7728422018-11-14 20:16:33 -080014
15 MOCK_METHOD2(mapWindow,
16 std::pair<std::uint32_t, std::uint32_t>(std::uint32_t,
17 std::uint32_t));
18};
19
20} // namespace blobs