Skip to content
Snippets Groups Projects
Storable.go 528 B
Newer Older
  • Learn to ignore specific revisions
  • // Code generated by mockery v2.10.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
    }
    
    
    Manuel Kieweg's avatar
    Manuel Kieweg committed
    // 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
    }