| 68 | func (f *testFile) Size() int64 { return int64(len(f.content)) } |
| 69 | |
| 70 | type testDirectory struct { |
| 71 | testBaseEntry |
| 72 | files []fs.Entry |
| 73 | } |
| 74 | |
| 75 | func (d *testDirectory) Iterate(ctx context.Context) (fs.DirectoryIterator, error) { |
| 76 | return fs.StaticIterator(d.files, nil), nil |
nothing calls this directly
no outgoing calls
no test coverage detected