hybridgroup.gobot/platforms/ble/ble_client_adaptor_test.go

18 lines
325 B
Go
Raw Normal View History

2015-06-08 03:38:19 +08:00
package ble
import (
"testing"
"github.com/hybridgroup/gobot/gobottest"
2015-06-08 03:38:19 +08:00
)
func initTestBLEClientAdaptor() *ClientAdaptor {
a := NewClientAdaptor("D7:99:5A:26:EC:38")
2015-06-08 03:38:19 +08: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-08 03:38:19 +08:00
}