hybridgroup.gobot/platforms/firmata/tcp_firmata_adaptor_test.go

21 lines
333 B
Go
Raw Normal View History

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 TestBB8Driver(t *testing.T) {
a := initTestTCPAdaptor()
gobottest.Assert(t, a.Name(), "TCPFirmata")
}