17 lines
333 B
Go
17 lines
333 B
Go
package testsuite
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"forge.cadoles.com/cadoles/go-emlid/reach/client"
|
|
"forge.cadoles.com/cadoles/go-emlid/reach/client/protocol"
|
|
)
|
|
|
|
func TestReachOperations(t *testing.T) {
|
|
opsFactory := func(addr string) (protocol.Operations, error) {
|
|
return client.NewClient(addr), nil
|
|
}
|
|
|
|
TestOperations(t, opsFactory)
|
|
}
|