101
102
// DeleteWorkflowExecution mocks base method.
103
>
func (m *MockEngine) DeleteWorkflowExecution(ctx context.Context, deleteRequest *historyservice.DeleteWorkflowExecutionRequest) (*historyservice.DeleteWorkflowExecutionResponse, error) {
engine_mock.go
104
>
m.ctrl.T.Helper()
105
>
ret := m.ctrl.Call(m, "DeleteWorkflowExecution", ctx, deleteRequest)
106
>
ret0, _ := ret[0].(*historyservice.DeleteWorkflowExecutionResponse)
107
>
ret1, _ := ret[1].(error)
108
>
return ret0, ret1
109
>
}
110
111
// DeleteWorkflowExecution indicates an expected call of DeleteWorkflowExecution.
112
>
func (mr *MockEngineMockRecorder) DeleteWorkflowExecution(ctx, deleteRequest any) *gomock.Call {
engine_mock.go
113
>
mr.mock.ctrl.T.Helper()
114
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteWorkflowExecution", reflect.TypeOf((*MockEngine)(nil).DeleteWorkflowExecution), ctx, deleteRequest)
115
>
}
116
117
// DescribeMutableState mocks base method.