(t *testing.T)
| 7 | ) |
| 8 | |
| 9 | func TestMarshalBinary(t *testing.T) { |
| 10 | t.Parallel() |
| 11 | |
| 12 | var bd strings.Builder |
| 13 | _ = marshalBinary(&bd, []byte{4, 2}) |
| 14 | |
| 15 | if bd.String() != ":BAI=:" { |
| 16 | t.Error("marshalBinary(): invalid") |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | func TestParseBinary(t *testing.T) { |
| 21 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…