Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
phosphor-ipmi-flash
/
a658636f901438d983cb78ecb0914dd83e40d4a3
/
.
/
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
));
};