358
359
// GetCurrentExecution mocks base method.
360
>
func (m *MockExecutionManager) GetCurrentExecution(ctx context.Context, request *GetCurrentExecutionRequest) (*GetCurrentExecutionResponse, error) {
data_interfaces_mock.go
361
>
m.ctrl.T.Helper()
362
>
ret := m.ctrl.Call(m, "GetCurrentExecution", ctx, request)
363
>
ret0, _ := ret[0].(*GetCurrentExecutionResponse)
364
>
ret1, _ := ret[1].(error)
365
>
return ret0, ret1
366
>
}
367
368
// GetCurrentExecution indicates an expected call of GetCurrentExecution.
369
>
func (mr *MockExecutionManagerMockRecorder) GetCurrentExecution(ctx, request any) *gomock.Call {
data_interfaces_mock.go
370
>
mr.mock.ctrl.T.Helper()
371
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetCurrentExecution", reflect.TypeOf((*MockExecutionManager)(nil).GetCurrentExecution), ctx, request)
372
>
}
373
374
// GetHistoryBranchUtil mocks base method.