1251c01b73
Previously the SupportsBlocking option was specified by a method on the type, and all the other options were specified from RegisterOptions. This change moves RegisterOptions to a method on the type, and moves SupportsBlocking into the options struct. Currently there are only 2 cache-types. So all cache-types can implement this method by embedding a struct with those predefined values. In the future if a cache type needs to be registered more than once with different options it can remove the embedded type and implement the method in a way that allows for paramaterization.
25 lines
490 B
Go
25 lines
490 B
Go
// Code generated by mockery v1.0.0. DO NOT EDIT.
|
|
|
|
package cache
|
|
|
|
import mock "github.com/stretchr/testify/mock"
|
|
|
|
// MockRequest is an autogenerated mock type for the Request type
|
|
type MockRequest struct {
|
|
mock.Mock
|
|
}
|
|
|
|
// CacheInfo provides a mock function with given fields:
|
|
func (_m *MockRequest) CacheInfo() RequestInfo {
|
|
ret := _m.Called()
|
|
|
|
var r0 RequestInfo
|
|
if rf, ok := ret.Get(0).(func() RequestInfo); ok {
|
|
r0 = rf()
|
|
} else {
|
|
r0 = ret.Get(0).(RequestInfo)
|
|
}
|
|
|
|
return r0
|
|
}
|