(t *testing.T)
| 25 | } |
| 26 | |
| 27 | func TestWrongVersion(t *testing.T) { |
| 28 | h := header |
| 29 | h.Version += 1 |
| 30 | expectErrorFromUndump(errVersionMismatch, h, t) |
| 31 | } |
| 32 | |
| 33 | func TestWrongNumberSize(t *testing.T) { |
| 34 | h := header |
nothing calls this directly
no test coverage detected
searching dependent graphs…