mirror of
https://github.com/FlourishingWorld/hk4e.git
synced 2026-02-04 17:22:27 +08:00
12 lines
129 B
Go
12 lines
129 B
Go
package random
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestGetRandomStr(t *testing.T) {
|
|
str := GetRandomStr(16)
|
|
fmt.Println(str)
|
|
}
|