314
315
// DeleteWorkflowExecution mocks base method.
316
>
func (m *MockExecutionManager) DeleteWorkflowExecution(ctx context.Context, request *DeleteWorkflowExecutionRequest) error {
data_interfaces_mock.go
317
>
m.ctrl.T.Helper()
318
>
ret := m.ctrl.Call(m, "DeleteWorkflowExecution", ctx, request)
319
>
ret0, _ := ret[0].(error)
320
>
return ret0
321
>
}
322
323
// DeleteWorkflowExecution indicates an expected call of DeleteWorkflowExecution.
324
>
func (mr *MockExecutionManagerMockRecorder) DeleteWorkflowExecution(ctx, request any) *gomock.Call {
data_interfaces_mock.go
325
>
mr.mock.ctrl.T.Helper()
326
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteWorkflowExecution", reflect.TypeOf((*MockExecutionManager)(nil).DeleteWorkflowExecution), ctx, request)
327
>
}
328
329
// ForkHistoryBranch mocks base method.