52 lines
1.2 KiB
Go
52 lines
1.2 KiB
Go
|
// Code generated by mockery v2.15.0. DO NOT EDIT.
|
||
|
|
||
|
package catalog
|
||
|
|
||
|
import (
|
||
|
limiter "github.com/hashicorp/consul/agent/grpc-external/limiter"
|
||
|
mock "github.com/stretchr/testify/mock"
|
||
|
)
|
||
|
|
||
|
// MockSessionLimiter is an autogenerated mock type for the SessionLimiter type
|
||
|
type MockSessionLimiter struct {
|
||
|
mock.Mock
|
||
|
}
|
||
|
|
||
|
// BeginSession provides a mock function with given fields:
|
||
|
func (_m *MockSessionLimiter) BeginSession() (limiter.Session, error) {
|
||
|
ret := _m.Called()
|
||
|
|
||
|
var r0 limiter.Session
|
||
|
if rf, ok := ret.Get(0).(func() limiter.Session); ok {
|
||
|
r0 = rf()
|
||
|
} else {
|
||
|
if ret.Get(0) != nil {
|
||
|
r0 = ret.Get(0).(limiter.Session)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var r1 error
|
||
|
if rf, ok := ret.Get(1).(func() error); ok {
|
||
|
r1 = rf()
|
||
|
} else {
|
||
|
r1 = ret.Error(1)
|
||
|
}
|
||
|
|
||
|
return r0, r1
|
||
|
}
|
||
|
|
||
|
type mockConstructorTestingTNewMockSessionLimiter interface {
|
||
|
mock.TestingT
|
||
|
Cleanup(func())
|
||
|
}
|
||
|
|
||
|
// NewMockSessionLimiter creates a new instance of MockSessionLimiter. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
|
||
|
func NewMockSessionLimiter(t mockConstructorTestingTNewMockSessionLimiter) *MockSessionLimiter {
|
||
|
mock := &MockSessionLimiter{}
|
||
|
mock.Mock.Test(t)
|
||
|
|
||
|
t.Cleanup(func() { mock.AssertExpectations(t) })
|
||
|
|
||
|
return mock
|
||
|
}
|