(i, n int, path string, byteCount int, err error)
| 18 | } |
| 19 | |
| 20 | func (d testEncoderDelegate) OnDataFileLoad(i, n int, path string, byteCount int, err error) { |
| 21 | d.t.Helper() |
| 22 | d.t.Logf("OnDataFileLoad(%d, %d, byteCount=%d, %s, %v)", i, n, byteCount, path, err) |
| 23 | } |
| 24 | |
| 25 | func (d testEncoderDelegate) OnIndexFileWrite(path string, byteCount int, err error) { |
| 26 | d.t.Helper() |
nothing calls this directly
no outgoing calls
no test coverage detected