60
61
// DeleteWorkflowExecution mocks base method.
62
>
func (m *MockDeleteManager) DeleteWorkflowExecution(ctx context.Context, nsID namespace.ID, we *common.WorkflowExecution, weCtx interfaces.WorkflowContext, ms interfaces.MutableState, stage *tasks.DeleteWorkflowExecutionStage) error {
delete_manager_mock.go
63
>
m.ctrl.T.Helper()
64
>
ret := m.ctrl.Call(m, "DeleteWorkflowExecution", ctx, nsID, we, weCtx, ms, stage)
65
>
ret0, _ := ret[0].(error)
66
>
return ret0
67
>
}
68
69
// DeleteWorkflowExecution indicates an expected call of DeleteWorkflowExecution.
70
>
func (mr *MockDeleteManagerMockRecorder) DeleteWorkflowExecution(ctx, nsID, we, weCtx, ms, stage any) *gomock.Call {
delete_manager_mock.go
71
>
mr.mock.ctrl.T.Helper()
72
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteWorkflowExecution", reflect.TypeOf((*MockDeleteManager)(nil).DeleteWorkflowExecution), ctx, nsID, we, weCtx, ms, stage)
73
>
}
74
75
// DeleteWorkflowExecutionByRetention mocks base method.