docker / id /mock.go
Xlnk's picture
Upload 176 files
7b9f3e3 verified
package id
import "github.com/stretchr/testify/mock"
type MockGenerator struct {
mock.Mock
}
func (m *MockGenerator) NewId() string {
args := m.Called()
return args.String(0)
}