This repository has been archived on 2024-08-02. You can view files and clone it, but cannot push or open issues or pull requests.
orion/reach/time_sync_test.go

29 lines
405 B
Go

package reach
import (
"testing"
)
func TestClientTimeSync(t *testing.T) {
if !*runIntegrationTests {
t.Skip("To run this test, use: go test -integration")
}
client := NewClient(
WithStandardLogger(),
WithEndpoint(*reachHost, 80),
)
if err := client.Connect(); err != nil {
t.Fatal(err)
}
_, err := client.TimeSyncStatus()
if err != nil {
t.Error(err)
}
defer client.Close()
}