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/gobase64/gobase64_test.go

14 lines
180 B

package gobase64
import (
"testing"
)
func TestEncode(t *testing.T) {
t.Log(Encode("广东茂名"))
}
func TestDecode(t *testing.T) {
t.Log(Decode(Encode("广东茂名")))
}