Skip to content

Commit 2d9d1b0

Browse files
committed
fixed actionsdispatchermock
1 parent 8de35b2 commit 2d9d1b0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/framework/actions/tests/mocks/actionsdispatchermock.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,11 @@ class ActionsDispatcherMock : public IActionsDispatcher
3131
public:
3232
MOCK_METHOD(void, dispatch, (const ActionCode&), (override));
3333
MOCK_METHOD(void, dispatch, (const ActionCode&, const ActionData&), (override));
34+
MOCK_METHOD(void, dispatch, (const ActionQuery& actionQuery), (override));
3435

3536
MOCK_METHOD(void, unReg, (Actionable*), (override));
3637
MOCK_METHOD(void, reg, (Actionable*, const ActionCode&, const ActionCallBackWithNameAndData&), (override));
38+
MOCK_METHOD(void, reg, (Actionable * client, const ActionQuery& actionQuery, const ActionCallBackWithQuery& call), (override));
3739
MOCK_METHOD(bool, isReg, (Actionable*), (const, override));
3840
MOCK_METHOD(ActionCodeList, actionList, (), (const, override));
3941
};

0 commit comments

Comments
 (0)