Newer
Older
// Code generated by mockery v2.6.0. DO NOT EDIT.
package mocks
import (
mock "github.com/stretchr/testify/mock"
uuid "github.com/google/uuid"
)
// Storable is an autogenerated mock type for the Storable type
type Storable struct {
mock.Mock
}
// Id provides a mock function with given fields:
func (_m *Storable) Id() uuid.UUID {
ret := _m.Called()
var r0 uuid.UUID
if rf, ok := ret.Get(0).(func() uuid.UUID); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(uuid.UUID)
}
}
return r0
}