Files
hk4e/pkg/random/random_test.go
2022-11-24 22:47:24 +08:00

12 lines
129 B
Go

package random
import (
"fmt"
"testing"
)
func TestGetRandomStr(t *testing.T) {
str := GetRandomStr(16)
fmt.Println(str)
}