21 lines
341 B
Go
21 lines
341 B
Go
package firmata
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"gobot.io/x/gobot"
|
|
"gobot.io/x/gobot/gobottest"
|
|
)
|
|
|
|
var _ gobot.Adaptor = (*TCPAdaptor)(nil)
|
|
|
|
func initTestTCPAdaptor() *TCPAdaptor {
|
|
a := NewTCPAdaptor("localhost:4567")
|
|
return a
|
|
}
|
|
|
|
func TestFirmataTCPAdaptor(t *testing.T) {
|
|
a := initTestTCPAdaptor()
|
|
gobottest.Assert(t, a.Name(), "TCPFirmata")
|
|
}
|