Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
phosphor-ipmi-flash
/
008875971ad526b8b1792c7c296923ba23edd7d2
/
.
/
tools
/
test
/
data_interface_mock.hpp
blob: d823da543e2d633cc94a73c26eb45d4247177643 [
file
] [
log
] [
blame
]
#pragma
once
#include
"interface.hpp"
#include
<gmock/gmock.h>
class
DataInterfaceMock
:
public
DataInterface
{
public
:
virtual
~
DataInterfaceMock
()
=
default
;
MOCK_METHOD2
(
sendContents
,
bool
(
const
std
::
string
&,
std
::
uint16_t
));
};