28 lines
392 B
Go
28 lines
392 B
Go
|
package reach
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestClient(t *testing.T) {
|
||
|
|
||
|
client := NewClient(
|
||
|
WithStandardLogger(),
|
||
|
)
|
||
|
if err := client.Connect(); err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
|
||
|
results, err := client.TestResults()
|
||
|
if err != nil {
|
||
|
t.Error(err)
|
||
|
}
|
||
|
|
||
|
if g, e := results.Device, "ReachRS"; g != e {
|
||
|
t.Errorf("results.Device: got '%s', expected '%s'", g, e)
|
||
|
}
|
||
|
|
||
|
defer client.Close()
|
||
|
|
||
|
}
|