You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-library/utils/gorandom/gorandom_test.go

23 lines
307 B

package gorandom
import (
"fmt"
"testing"
)
func TestAlphanumeric(t *testing.T) {
fmt.Println(Alphanumeric(10))
}
func TestAlphabetic(t *testing.T) {
fmt.Println(Alphabetic(10))
}
func TestNumeric(t *testing.T) {
fmt.Println(Numeric(10))
}
func TestAscii(t *testing.T) {
fmt.Println(Ascii(10))
}