blob: 3e8f24abb737f2118f2f2c948170c950de008a7a [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,
blobs::FirmwareBlobHandler::UpdateFlags());
};
} // namespace host_tool