877
878
// UpdateWorkflowExecution mocks base method.
879
>
func (m *MockShardContext) UpdateWorkflowExecution(ctx context.Context, request *persistence0.UpdateWorkflowExecutionRequest) (*persistence0.UpdateWorkflowExecutionResponse, error) {
shard_context_mock.go
880
>
m.ctrl.T.Helper()
881
>
ret := m.ctrl.Call(m, "UpdateWorkflowExecution", ctx, request)
882
>
ret0, _ := ret[0].(*persistence0.UpdateWorkflowExecutionResponse)
883
>
ret1, _ := ret[1].(error)
884
>
return ret0, ret1
885
>
}
886
887
// UpdateWorkflowExecution indicates an expected call of UpdateWorkflowExecution.
888
>
func (mr *MockShardContextMockRecorder) UpdateWorkflowExecution(ctx, request any) *gomock.Call {
shard_context_mock.go
889
>
mr.mock.ctrl.T.Helper()
890
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateWorkflowExecution", reflect.TypeOf((*MockShardContext)(nil).UpdateWorkflowExecution), ctx, request)
891
>
}
892
893
// MockControllableContext is a mock of ControllableContext interface.