package l_request import "testing" func TestPool(t *testing.T) { r := RequestPools.Get() r.Url = "http://www.baidu.com" RequestPools.ClearAndPut(r) a := RequestPools.Get() t.Log(a.Url) }