(n int)
| 172 | return r.faker.URL() |
| 173 | } |
| 174 | func (r *FakerRandomizer) Characters(n int) string { |
| 175 | return r.faker.Characters(n) |
| 176 | } |
| 177 | func (r *FakerRandomizer) UUID() string { |
| 178 | uuid := make([]byte, 16) |
| 179 | r.rand.Read(uuid) |
nothing calls this directly
no test coverage detected