(start, count, total int, path string, dataByteCount, byteCount int, err error)
| 28 | } |
| 29 | |
| 30 | func (d testEncoderDelegate) OnRecoveryFileWrite(start, count, total int, path string, dataByteCount, byteCount int, err error) { |
| 31 | d.t.Helper() |
| 32 | d.t.Logf("OnRecoveryFileWrite(start=%d, count=%d, total=%d, %s, dataByteCount=%d, byteCount=%d, %v)", start, count, total, path, dataByteCount, byteCount, err) |
| 33 | } |
| 34 | |
| 35 | func newEncoderForTest(t *testing.T, fs memfs.MemFS, basePath string, paths []string, sliceByteCount, parityShardCount int) (*Encoder, error) { |
| 36 | return newEncoder(testFileIO{t, fs}, testEncoderDelegate{t}, basePath, paths, sliceByteCount, parityShardCount, rsec16.DefaultNumGoroutines()) |
nothing calls this directly
no outgoing calls
no test coverage detected