(t *testing.T)
| 31 | } |
| 32 | |
| 33 | func TestWrongNumberSize(t *testing.T) { |
| 34 | h := header |
| 35 | h.NumberSize /= 2 |
| 36 | expectErrorFromUndump(errIncompatible, h, t) |
| 37 | } |
| 38 | |
| 39 | func TestCorruptTail(t *testing.T) { |
| 40 | h := header |
nothing calls this directly
no test coverage detected
searching dependent graphs…