(i, n int, path string, byteCount int, err error)
| 72 | } |
| 73 | |
| 74 | func (d testDecoderDelegate) OnDataFileWrite(i, n int, path string, byteCount int, err error) { |
| 75 | d.t.Helper() |
| 76 | d.t.Logf("OnDataFileWrite(%d, %d, %s, %d, %v)", i, n, path, byteCount, err) |
| 77 | } |
| 78 | |
| 79 | func TestFileRoundTrip(t *testing.T) { |
| 80 | sliceByteCount := 8 |
nothing calls this directly
no outgoing calls
no test coverage detected