blob: cbf5bf36844801a03c5f5ef3188fa8a557c0a359 [file] [log] [blame]
Wludzik, Jozef1477fe62021-01-02 11:56:10 +01001#pragma once
2
3#include "interfaces/trigger_action.hpp"
4
5#include <gmock/gmock.h>
6
7class TriggerActionMock : public interfaces::TriggerAction
8{
9 public:
Szymon Dompkeb7b7e1b2022-05-19 10:15:48 +020010 MOCK_METHOD(void, commit,
11 (const std::string&, const ThresholdName, const std::string&,
12 const Milliseconds, const TriggerValue),
Wludzik, Jozef1477fe62021-01-02 11:56:10 +010013 (override));
14};