| 57 | } |
| 58 | |
| 59 | type testFile struct { |
| 60 | testBaseEntry |
| 61 | content string |
| 62 | } |
| 63 | |
| 64 | func (f *testFile) Open(ctx context.Context) (io.Reader, error) { |
| 65 | return strings.NewReader(f.content), nil |
nothing calls this directly
no outgoing calls
no test coverage detected