(i, n int, path string, dataByteCount, byteCount int, err error)
| 20 | } |
| 21 | |
| 22 | func (d testEncoderDelegate) OnVolumeFileWrite(i, n int, path string, dataByteCount, byteCount int, err error) { |
| 23 | d.t.Helper() |
| 24 | d.t.Logf("OnVolumeFileWrite(%d, %d, %s, dataByteCount=%d, byteCount=%d, %v)", i, n, path, dataByteCount, byteCount, err) |
| 25 | } |
| 26 | |
| 27 | func makeEncoderMemFS(workingDir string) memfs.MemFS { |
| 28 | return memfs.MakeMemFS(workingDir, map[string][]byte{ |
nothing calls this directly
no outgoing calls
no test coverage detected