CasaOS/pkg/utils/random/random_test.go
2021-12-03 16:48:07 +08:00

11 lines
122 B
Go

package random
import (
"fmt"
"testing"
)
func TestRandomString(t *testing.T) {
fmt.Println(RandomString(6, true))
}