272
273
// DeleteCurrentWorkflowExecution mocks base method.
274
>
func (m *MockExecutionManager) DeleteCurrentWorkflowExecution(ctx context.Context, request *DeleteCurrentWorkflowExecutionRequest) error {
data_interfaces_mock.go
275
>
m.ctrl.T.Helper()
276
>
ret := m.ctrl.Call(m, "DeleteCurrentWorkflowExecution", ctx, request)
277
>
ret0, _ := ret[0].(error)
278
>
return ret0
279
>
}
280
281
// DeleteCurrentWorkflowExecution indicates an expected call of DeleteCurrentWorkflowExecution.
282
>
func (mr *MockExecutionManagerMockRecorder) DeleteCurrentWorkflowExecution(ctx, request any) *gomock.Call {
data_interfaces_mock.go
283
>
mr.mock.ctrl.T.Helper()
284
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteCurrentWorkflowExecution", reflect.TypeOf((*MockExecutionManager)(nil).DeleteCurrentWorkflowExecution), ctx, request)
285
>
}
286
287
// DeleteHistoryBranch mocks base method.