package helper import ( "testing") func Test_HttpBuildQuery(t *testing.T) { list := map[string]string{"a": "b", "c": "cdd", "b": ""} ret := HttpBuildQuery(list) t.Log(ret) }