github.com/TeaOSLab/EdgeNode@v1.3.8/internal/utils/clock/manager_test.go (about) 1 // Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved. Official site: https://goedge.cn . 2 3 package clock_test 4 5 import ( 6 "github.com/TeaOSLab/EdgeNode/internal/utils/clock" 7 "github.com/TeaOSLab/EdgeNode/internal/utils/testutils" 8 "testing" 9 ) 10 11 func TestReadServer(t *testing.T) { 12 if !testutils.IsSingleTesting() { 13 return 14 } 15 16 t.Log(clock.NewClockManager().ReadServer("pool.ntp.org")) 17 }