Files
ProjectOctopus/socks5_txthinking/util_test.go
2024-03-08 17:23:41 +08:00

10 lines
175 B
Go

package main
import "testing"
func TestParseAddress(t *testing.T) {
t.Log(ParseAddress("127.0.0.1:80"))
t.Log(ParseAddress("[::1]:80"))
t.Log(ParseAddress("a.com:80"))
}