200
201
// ListWorkflowExecutions mocks base method.
202
>
func (m *MockVisibilityManager) ListWorkflowExecutions(ctx context.Context, request *ListWorkflowExecutionsRequestV2) (*ListWorkflowExecutionsResponse, error) {
visibility_manager_mock.go
203
>
m.ctrl.T.Helper()
204
>
ret := m.ctrl.Call(m, "ListWorkflowExecutions", ctx, request)
205
>
ret0, _ := ret[0].(*ListWorkflowExecutionsResponse)
206
>
ret1, _ := ret[1].(error)
207
>
return ret0, ret1
208
>
}
209
210
// ListWorkflowExecutions indicates an expected call of ListWorkflowExecutions.
211
>
func (mr *MockVisibilityManagerMockRecorder) ListWorkflowExecutions(ctx, request any) *gomock.Call {
visibility_manager_mock.go
212
>
mr.mock.ctrl.T.Helper()
213
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListWorkflowExecutions", reflect.TypeOf((*MockVisibilityManager)(nil).ListWorkflowExecutions), ctx, request)
214
>
}
215
216
// RecordWorkflowExecutionClosed mocks base method.