343
344
// GetCurrentExecution mocks base method.
345
>
func (m *MockShardContext) GetCurrentExecution(ctx context.Context, request *persistence0.GetCurrentExecutionRequest) (*persistence0.GetCurrentExecutionResponse, error) {
shard_context_mock.go
346
>
m.ctrl.T.Helper()
347
>
ret := m.ctrl.Call(m, "GetCurrentExecution", ctx, request)
348
>
ret0, _ := ret[0].(*persistence0.GetCurrentExecutionResponse)
349
>
ret1, _ := ret[1].(error)
350
>
return ret0, ret1
351
>
}
352
353
// GetCurrentExecution indicates an expected call of GetCurrentExecution.
354
>
func (mr *MockShardContextMockRecorder) GetCurrentExecution(ctx, request any) *gomock.Call {
shard_context_mock.go
355
>
mr.mock.ctrl.T.Helper()
356
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetCurrentExecution", reflect.TypeOf((*MockShardContext)(nil).GetCurrentExecution), ctx, request)
357
>
}
358
359
// GetCurrentTime mocks base method.