Files
EdgeAPI/internal/tests/helper_test.go

20 lines
278 B
Go
Raw Normal View History

2020-07-22 22:17:53 +08:00
package tests
import (
"github.com/iwind/TeaGo/rands"
2020-07-24 09:17:48 +08:00
"math"
"net/url"
2020-07-22 22:17:53 +08:00
"testing"
)
func TestRandString(t *testing.T) {
t.Log(rands.HexString(32))
}
2020-07-24 09:17:48 +08:00
func TestCharset(t *testing.T) {
t.Log(url.QueryEscape("中文"))
}
func TestInt(t *testing.T) {
t.Log(math.MaxInt64)
}