(t *testing.T)
| 30 | ) |
| 31 | |
| 32 | func TestDe1(t *testing.T) { |
| 33 | h, _ := hex.DecodeString("657674001001000000010500000068656c6c6f") |
| 34 | |
| 35 | _, err := parseNotify(h) |
| 36 | assert.Nil(t, err) |
| 37 | } |
| 38 | |
| 39 | func EncodeNotify(t *testing.T, value interface{}) []byte { |
| 40 | val, err := EncodeValue(value) |
nothing calls this directly
no test coverage detected