l_request/pool_test.go

12 lines
194 B
Go
Raw Permalink Normal View History

2025-02-19 15:17:34 +08:00
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)
}