Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
phosphor-ipmi-flash
/
fa662eb82ae685729cfaa8fb78fa2839f5cebcac
/
.
/
test
/
ipmi_interface_mock.hpp
blob: bee3da4bfbe31eb615dfc10ac8ddbb978ed7f129 [
file
] [
log
] [
blame
]
#pragma
once
#include
"ipmi_interface.hpp"
#include
<gmock/gmock.h>
class
IpmiInterfaceMock
:
public
IpmiInterface
{
public
:
virtual
~
IpmiInterfaceMock
()
=
default
;
MOCK_METHOD1
(
sendPacket
,
int
(
const
std
::
vector
<
std
::
uint8_t
>&));
};