Files
hk4e/common/utils/random/random_test.go
2022-11-20 15:38:00 +08:00

12 lines
129 B
Go

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