blob: 38d161d2e9d5e34171005023398b280bb12bac82 [file] [log] [blame]
package ble
import "testing"
func TestNewAddr(t *testing.T) {
a := NewAddr("TeSt")
if a.String() != "test" {
t.Error("address should be \"test\" but is ", a.String())
}
}