1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-29 13:49:14 +08:00
hybridgroup.gobot/platforms/ble/ble_client_adaptor_test.go

18 lines
313 B
Go
Raw Normal View History

2015-06-07 12:38:19 -07:00
package ble
import (
"testing"
"gobot.io/x/gobot/gobottest"
2015-06-07 12:38:19 -07:00
)
func initTestBLEClientAdaptor() *ClientAdaptor {
a := NewClientAdaptor("D7:99:5A:26:EC:38")
2015-06-07 12:38:19 -07:00
return a
}
func TestBLEClientAdaptor(t *testing.T) {
a := NewClientAdaptor("D7:99:5A:26:EC:38")
gobottest.Assert(t, a.UUID(), "D7:99:5A:26:EC:38")
2015-06-07 12:38:19 -07:00
}