阶段性提交

This commit is contained in:
刘祥超
2020-07-24 09:17:48 +08:00
parent 23cca702b4
commit 943742b836
53 changed files with 2962 additions and 1696 deletions

View File

@@ -2,9 +2,19 @@ package tests
import (
"github.com/iwind/TeaGo/rands"
"math"
"net/url"
"testing"
)
func TestRandString(t *testing.T) {
t.Log(rands.HexString(32))
}
func TestCharset(t *testing.T) {
t.Log(url.QueryEscape("中文"))
}
func TestInt(t *testing.T) {
t.Log(math.MaxInt64)
}