Skip to content

Commit

Permalink
fixed actionsdispatchermock
Browse files Browse the repository at this point in the history
  • Loading branch information
igorkorsukov committed Dec 18, 2024
1 parent 8de35b2 commit 2d9d1b0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/framework/actions/tests/mocks/actionsdispatchermock.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,11 @@ class ActionsDispatcherMock : public IActionsDispatcher
public:
MOCK_METHOD(void, dispatch, (const ActionCode&), (override));
MOCK_METHOD(void, dispatch, (const ActionCode&, const ActionData&), (override));
MOCK_METHOD(void, dispatch, (const ActionQuery& actionQuery), (override));

MOCK_METHOD(void, unReg, (Actionable*), (override));
MOCK_METHOD(void, reg, (Actionable*, const ActionCode&, const ActionCallBackWithNameAndData&), (override));
MOCK_METHOD(void, reg, (Actionable * client, const ActionQuery& actionQuery, const ActionCallBackWithQuery& call), (override));
MOCK_METHOD(bool, isReg, (Actionable*), (const, override));
MOCK_METHOD(ActionCodeList, actionList, (), (const, override));
};
Expand Down

0 comments on commit 2d9d1b0

Please sign in to comment.