(i uint64, path string, storedSetHash, computedSetHash [16]byte, dataByteCount int, err error)
| 67 | } |
| 68 | |
| 69 | func (d testDecoderDelegate) OnVolumeFileLoad(i uint64, path string, storedSetHash, computedSetHash [16]byte, dataByteCount int, err error) { |
| 70 | d.t.Helper() |
| 71 | d.t.Logf("OnVolumeFileLoad(%d, %s, storedSetHash=%x, computedSetHash=%x, dataByteCount=%d, %v)", i, path, storedSetHash, computedSetHash, dataByteCount, err) |
| 72 | } |
| 73 | |
| 74 | func toSortedStrings(arr []string) []string { |
| 75 | arrCopy := make([]string, len(arr)) |
nothing calls this directly
no outgoing calls
no test coverage detected