(t *testing.T, fs memfs.MemFS, indexPath string)
| 178 | } |
| 179 | |
| 180 | func newDecoderForTest(t *testing.T, fs memfs.MemFS, indexPath string) (*Decoder, error) { |
| 181 | return newDecoder(testFileIO{t, fs}, testDecoderDelegate{t}, indexPath, rsec16.DefaultNumGoroutines()) |
| 182 | } |
| 183 | |
| 184 | func makeDecoderMemFS(workingDir string) memfs.MemFS { |
| 185 | return memfs.MakeMemFS(workingDir, map[string][]byte{ |
no test coverage detected