(t *testing.T)
| 190 | } |
| 191 | |
| 192 | func TestRefStringMinusOne(t *testing.T) { |
| 193 | br := MustParse("abc-1234") |
| 194 | want := "abc-1233" |
| 195 | if got := br.StringMinusOne(); got != want { |
| 196 | t.Errorf("StringMinusOne = %q; want %q", got, want) |
| 197 | } |
| 198 | } |
| 199 | |
| 200 | func TestMarshalBinary(t *testing.T) { |
| 201 | br := MustParse("abc-00ff4869") |
nothing calls this directly
no test coverage detected