package testing import ( "math/rand" "time" ) func init() { rand.Seed(time.Now().UnixNano()) } const letterBytes = "abcdefghijklmnopqrstuvwxyz" // Copied from https://stackoverflow.com/a/31832326 with thanks func RandStringBytesRmndr(n int) string { b := make([]byte, n) for i := range b { b[i] = letterBytes[rand.Int63()%int64(len(letterBytes))] } return string(b) }