blob: c7c402299eeea02ca2a7c1d78fb9e906b23eb316 [file] [log] [blame]
#pragma once
#include "ethernet_interface.hpp"
#include "mock_syscall.hpp"
#include <gmock/gmock.h>
namespace phosphor
{
namespace network
{
class MockEthernetInterface : public EthernetInterface
{
public:
MockEthernetInterface(sdbusplus::bus::bus& bus, const std::string& objPath,
bool dhcpEnabled, Manager& parent, bool emitSignal) :
EthernetInterface(bus, objPath, dhcpEnabled, parent, emitSignal)
{
}
MOCK_METHOD((ServerList), getNameServerFromResolvd, (), (override));
friend class TestEthernetInterface;
};
} // namespace network
} // namespace phosphor