Files
play-with-docker/id/mock.go
2017-09-14 10:20:20 -03:00

13 lines
183 B
Go

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)
}