400
401
// EXPECT returns an object that allows the caller to indicate expected use.
403
>
return m.recorder
404
>
}
405
406
// Execute mocks base method.
407
>
func (m *MockExecutor) Execute(arg0 context.Context, arg1 Executable) ExecuteResponse {
executable_mock.go
408
>
m.ctrl.T.Helper()
409
>
ret := m.ctrl.Call(m, "Execute", arg0, arg1)
410
>
ret0, _ := ret[0].(ExecuteResponse)
411
>
return ret0
412
>
}
413
414
// Execute indicates an expected call of Execute.
415
>
func (mr *MockExecutorMockRecorder) Execute(arg0, arg1 any) *gomock.Call {
executable_mock.go
416
>
mr.mock.ctrl.T.Helper()
417
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Execute", reflect.TypeOf((*MockExecutor)(nil).Execute), arg0, arg1)
418
>
}
419
420
// MockExecutorWrapper is a mock of ExecutorWrapper interface.