mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-05-09 19:29:27 +08:00
18 lines
361 B
Go
18 lines
361 B
Go
package ble
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"gobot.io/x/gobot/gobottest"
|
|
)
|
|
|
|
func initTestDeviceInformationDriver() *DeviceInformationDriver {
|
|
d := NewDeviceInformationDriver(NewClientAdaptor("D7:99:5A:26:EC:38"))
|
|
return d
|
|
}
|
|
|
|
func TestDeviceInformationDriver(t *testing.T) {
|
|
d := initTestDeviceInformationDriver()
|
|
gobottest.Assert(t, d.Name(), "DeviceInformation")
|
|
}
|