blob: bfcb90b1d825a3b1041cb9cc135ccb5c5d94f5fb [file] [log] [blame]
Patrick Venture7dc46702018-08-08 09:43:33 -07001#pragma once
2
3#include "raw.hpp"
4
5class MockRaw : public RawInterface
6{
7 public:
8 MOCK_METHOD1(Raw, struct IpmiResponse(const std::vector<uint8_t>&));
9 MOCK_METHOD2(RawWithTries,
10 struct IpmiResponse(const std::vector<uint8_t>&, int));
11};