257
258
// CreateWorkflowExecution mocks base method.
259
>
func (m *MockExecutionManager) CreateWorkflowExecution(ctx context.Context, request *CreateWorkflowExecutionRequest) (*CreateWorkflowExecutionResponse, error) {
data_interfaces_mock.go
260
>
m.ctrl.T.Helper()
261
>
ret := m.ctrl.Call(m, "CreateWorkflowExecution", ctx, request)
262
>
ret0, _ := ret[0].(*CreateWorkflowExecutionResponse)
263
>
ret1, _ := ret[1].(error)
264
>
return ret0, ret1
265
>
}
266
267
// CreateWorkflowExecution indicates an expected call of CreateWorkflowExecution.
268
>
func (mr *MockExecutionManagerMockRecorder) CreateWorkflowExecution(ctx, request any) *gomock.Call {
data_interfaces_mock.go
269
>
mr.mock.ctrl.T.Helper()
270
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "CreateWorkflowExecution", reflect.TypeOf((*MockExecutionManager)(nil).CreateWorkflowExecution), ctx, request)
271
>
}
272
273
// DeleteCurrentWorkflowExecution mocks base method.