156
157
// GetWorkflowExecution mocks base method.
158
>
func (m *MockVisibilityManager) GetWorkflowExecution(ctx context.Context, request *GetWorkflowExecutionRequest) (*GetWorkflowExecutionResponse, error) {
visibility_manager_mock.go
159
>
m.ctrl.T.Helper()
160
>
ret := m.ctrl.Call(m, "GetWorkflowExecution", ctx, request)
161
>
ret0, _ := ret[0].(*GetWorkflowExecutionResponse)
162
>
ret1, _ := ret[1].(error)
163
>
return ret0, ret1
164
>
}
165
166
// GetWorkflowExecution indicates an expected call of GetWorkflowExecution.
167
>
func (mr *MockVisibilityManagerMockRecorder) GetWorkflowExecution(ctx, request any) *gomock.Call {
visibility_manager_mock.go
168
>
mr.mock.ctrl.T.Helper()
169
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetWorkflowExecution", reflect.TypeOf((*MockVisibilityManager)(nil).GetWorkflowExecution), ctx, request)
170
>
}
171
172
// HasStoreName mocks base method.