blob: e373f8a2e40904d8600374d288d724b88273c866 [file] [log] [blame]
#pragma once
#include "dbus/util.hpp"
#include <sdbusplus/bus.hpp>
#include <string>
#include <gmock/gmock.h>
class DbusHelperMock : public DbusHelperInterface
{
public:
virtual ~DbusHelperMock() = default;
MOCK_METHOD3(getService,
std::string(sdbusplus::bus::bus&, const std::string&,
const std::string&));
MOCK_METHOD4(getProperties,
void(sdbusplus::bus::bus&, const std::string&,
const std::string&, struct SensorProperties*));
MOCK_METHOD3(thresholdsAsserted,
bool(sdbusplus::bus::bus& bus, const std::string& service,
const std::string& path));
};