(i, n int, path string, byteCount, hits, misses int, err error)
| 47 | } |
| 48 | |
| 49 | func (d testDecoderDelegate) OnDataFileLoad(i, n int, path string, byteCount, hits, misses int, err error) { |
| 50 | d.t.Helper() |
| 51 | d.t.Logf("OnDataFileLoad(%d, %d, %s, byteCount=%d, hits=%d, misses=%d, %v)", i, n, path, byteCount, hits, misses, err) |
| 52 | } |
| 53 | |
| 54 | func (d testDecoderDelegate) OnParityFileLoad(i int, path string, err error) { |
| 55 | d.t.Helper() |
nothing calls this directly
no outgoing calls
no test coverage detected