forked from mirrors/gotosocial
48 lines
934 B
Go
48 lines
934 B
Go
|
// Code generated by mockery v2.7.4. DO NOT EDIT.
|
||
|
|
||
|
package cache
|
||
|
|
||
|
import mock "github.com/stretchr/testify/mock"
|
||
|
|
||
|
// MockCache is an autogenerated mock type for the Cache type
|
||
|
type MockCache struct {
|
||
|
mock.Mock
|
||
|
}
|
||
|
|
||
|
// Fetch provides a mock function with given fields: k
|
||
|
func (_m *MockCache) Fetch(k string) (interface{}, error) {
|
||
|
ret := _m.Called(k)
|
||
|
|
||
|
var r0 interface{}
|
||
|
if rf, ok := ret.Get(0).(func(string) interface{}); ok {
|
||
|
r0 = rf(k)
|
||
|
} else {
|
||
|
if ret.Get(0) != nil {
|
||
|
r0 = ret.Get(0).(interface{})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var r1 error
|
||
|
if rf, ok := ret.Get(1).(func(string) error); ok {
|
||
|
r1 = rf(k)
|
||
|
} else {
|
||
|
r1 = ret.Error(1)
|
||
|
}
|
||
|
|
||
|
return r0, r1
|
||
|
}
|
||
|
|
||
|
// Store provides a mock function with given fields: k, v
|
||
|
func (_m *MockCache) Store(k string, v interface{}) error {
|
||
|
ret := _m.Called(k, v)
|
||
|
|
||
|
var r0 error
|
||
|
if rf, ok := ret.Get(0).(func(string, interface{}) error); ok {
|
||
|
r0 = rf(k, v)
|
||
|
} else {
|
||
|
r0 = ret.Error(0)
|
||
|
}
|
||
|
|
||
|
return r0
|
||
|
}
|