121
122
// Execute mocks base method.
123
>
func (m *MockPureTaskHandler[C, T]) Execute(arg0 MutableContext, arg1 C, arg2 TaskAttributes, arg3 T) error {
task_mock.go
124
>
m.ctrl.T.Helper()
125
>
ret := m.ctrl.Call(m, "Execute", arg0, arg1, arg2, arg3)
126
>
ret0, _ := ret[0].(error)
127
>
return ret0
128
>
}
129
130
// Execute indicates an expected call of Execute.
131
>
func (mr *MockPureTaskHandlerMockRecorder[C, T]) Execute(arg0, arg1, arg2, arg3 any) *gomock.Call {
task_mock.go
132
>
mr.mock.ctrl.T.Helper()
133
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Execute", reflect.TypeOf((*MockPureTaskHandler[C, T])(nil).Execute), arg0, arg1, arg2, arg3)
134
>
}
135
136
// Validate mocks base method.