243
244
// UpsertWorkflowExecution mocks base method.
245
>
func (m *MockVisibilityManager) UpsertWorkflowExecution(ctx context.Context, request *UpsertWorkflowExecutionRequest) error {
visibility_manager_mock.go
246
>
m.ctrl.T.Helper()
247
>
ret := m.ctrl.Call(m, "UpsertWorkflowExecution", ctx, request)
248
>
ret0, _ := ret[0].(error)
249
>
return ret0
250
>
}
251
252
// UpsertWorkflowExecution indicates an expected call of UpsertWorkflowExecution.
253
>
func (mr *MockVisibilityManagerMockRecorder) UpsertWorkflowExecution(ctx, request any) *gomock.Call {
visibility_manager_mock.go
254
>
mr.mock.ctrl.T.Helper()
255
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpsertWorkflowExecution", reflect.TypeOf((*MockVisibilityManager)(nil).UpsertWorkflowExecution), ctx, request)
256
>
}
257
258
// ValidateCustomSearchAttributes mocks base method.