142
143
// GetWorkflowExecution mocks base method.
144
>
func (m *MockVisibilityStore) GetWorkflowExecution(ctx context.Context, request *manager.GetWorkflowExecutionRequest) (*InternalGetWorkflowExecutionResponse, error) {
visibility_store_mock.go
145
>
m.ctrl.T.Helper()
146
>
ret := m.ctrl.Call(m, "GetWorkflowExecution", ctx, request)
147
>
ret0, _ := ret[0].(*InternalGetWorkflowExecutionResponse)
148
>
ret1, _ := ret[1].(error)
149
>
return ret0, ret1
150
>
}
151
152
// GetWorkflowExecution indicates an expected call of GetWorkflowExecution.
153
>
func (mr *MockVisibilityStoreMockRecorder) GetWorkflowExecution(ctx, request any) *gomock.Call {
visibility_store_mock.go
154
>
mr.mock.ctrl.T.Helper()
155
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetWorkflowExecution", reflect.TypeOf((*MockVisibilityStore)(nil).GetWorkflowExecution), ctx, request)
156
>
}
157
158
// ListChasmExecutions mocks base method.