prototooth/uuid_test.go
Ayke van Laethem 00e2592aff linux: add support for services
Unfortunately, I couldn't get characteristics to work.
2019-11-16 19:11:59 +00:00

14 lines
306 B
Go

package bluetooth
import "testing"
func TestUUIDString(t *testing.T) {
checkUUID(t, New16BitUUID(0x1234), "00001234-0000-1000-8000-00805F9B34FB")
}
func checkUUID(t *testing.T, uuid UUID, check string) {
if uuid.String() != check {
t.Errorf("expected UUID %s but got %s", check, uuid.String())
}
}