Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
phosphor-ipmi-flash
/
0bf8bf0cc5b0f3ffe091643864bebc100beea77f
/
.
/
test
/
blob_interface_mock.hpp
blob: 8218ed5a34ea1febe460210a100f466e78b17997 [
file
] [
log
] [
blame
]
#include
"blob_interface.hpp"
class
BlobInterfaceMock
:
public
BlobInterface
{
public
:
virtual
~
BlobInterfaceMock
()
=
default
;
MOCK_METHOD0
(
getBlobList
,
std
::
vector
<
std
::
string
>());
MOCK_METHOD1
(
getStat
,
StatResponse
(
const
std
::
string
&));
};