starnet/ping_test.go

12 lines
138 B
Go
Raw Normal View History

2021-06-04 10:49:23 +08:00
package starnet
import (
"fmt"
"testing"
"time"
)
func Test_Ping(t *testing.T) {
fmt.Println(Ping("baidu.com", 0, time.Second*2))
}