1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
// Code generated by mockery v1.1.0. DO NOT EDIT.
package cache
import mock "github.com/stretchr/testify/mock"
// MockCredentialsAdapter is an autogenerated mock type for the CredentialsAdapter type
type MockCredentialsAdapter struct {
mock.Mock
}
// GetCredentials provides a mock function with given fields:
func (_m *MockCredentialsAdapter) GetCredentials() map[string]string {
ret := _m.Called()
var r0 map[string]string
if rf, ok := ret.Get(0).(func() map[string]string); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(map[string]string)
}
}
return r0
}
|