blob: 3189e5b84e595452666711d93037a147847747a6 [file] [log] [blame]
#pragma once
#include "interface.hpp"
#include <gmock/gmock.h>
namespace host_tool
{
class DataInterfaceMock : public DataInterface
{
public:
virtual ~DataInterfaceMock() = default;
MOCK_METHOD2(sendContents, bool(const std::string&, std::uint16_t));
MOCK_CONST_METHOD0(supportedType,
ipmi_flash::FirmwareBlobHandler::UpdateFlags());
};
} // namespace host_tool