blob: cbf5bf36844801a03c5f5ef3188fa8a557c0a359 [file] [log] [blame]
#pragma once
#include "interfaces/trigger_action.hpp"
#include <gmock/gmock.h>
class TriggerActionMock : public interfaces::TriggerAction
{
public:
MOCK_METHOD(void, commit,
(const std::string&, const ThresholdName, const std::string&,
const Milliseconds, const TriggerValue),
(override));
};