model_test.go 122 B

12345678
  1. package model
  2. import "testing"
  3. func Test_Funcs(t *testing.T) {
  4. s := RandomString(32)
  5. t.Logf("random string: %s", s)
  6. }