starnet/ping_test.go

16 lines
311 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) {
2023-02-11 17:15:01 +08:00
fmt.Println(Ping("baidu.com", 29, time.Second*2))
fmt.Println(Ping("www.b612.me", 29, time.Second*2))
fmt.Println(IsIpPingable("baidu.com", time.Second*2, 3))
fmt.Println(IsIpPingable("www.b612.me", time.Second*2, 3))
2021-06-04 10:49:23 +08:00
}