1268
1269
// UpdateWorkflowExecution mocks base method.
1270
>
func (m *MockExecutionStore) UpdateWorkflowExecution(ctx context.Context, request *persistence.InternalUpdateWorkflowExecutionRequest) error {
store_mock.go
1271
>
m.ctrl.T.Helper()
1272
>
ret := m.ctrl.Call(m, "UpdateWorkflowExecution", ctx, request)
1273
>
ret0, _ := ret[0].(error)
1274
>
return ret0
1275
>
}
1276
1277
// UpdateWorkflowExecution indicates an expected call of UpdateWorkflowExecution.
1278
>
func (mr *MockExecutionStoreMockRecorder) UpdateWorkflowExecution(ctx, request any) *gomock.Call {
store_mock.go
1279
>
mr.mock.ctrl.T.Helper()
1280
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateWorkflowExecution", reflect.TypeOf((*MockExecutionStore)(nil).UpdateWorkflowExecution), ctx, request)
1281
>
}
1282
1283
// MockQueue is a mock of Queue interface.