blob: a99f131856ad572a89ef1168046d46f3f1d1bc80 [file] [log] [blame]
#pragma once
#include "handler.hpp"
#include <gmock/gmock.h>
namespace google
{
namespace ipmi
{
class HandlerMock : public HandlerInterface
{
public:
~HandlerMock() = default;
MOCK_CONST_METHOD0(getEthDetails, std::tuple<std::uint8_t, std::string>());
MOCK_CONST_METHOD1(getRxPackets, std::int64_t(const std::string&));
};
} // namespace ipmi
} // namespace google