56
57
// Execute mocks base method.
58
>
func (m *MockSideEffectTaskHandler[C, T]) Execute(arg0 context.Context, arg1 ComponentRef, arg2 TaskAttributes, arg3 T) error {
task_mock.go
59
>
m.ctrl.T.Helper()
60
>
ret := m.ctrl.Call(m, "Execute", arg0, arg1, arg2, arg3)
61
>
ret0, _ := ret[0].(error)
62
>
return ret0
63
>
}
64
65
// Execute indicates an expected call of Execute.
66
>
func (mr *MockSideEffectTaskHandlerMockRecorder[C, T]) Execute(arg0, arg1, arg2, arg3 any) *gomock.Call {
task_mock.go
67
>
mr.mock.ctrl.T.Helper()
68
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Execute", reflect.TypeOf((*MockSideEffectTaskHandler[C, T])(nil).Execute), arg0, arg1, arg2, arg3)
69
>
}
70
71
// Validate mocks base method.