(name string, content []byte)
| 800 | } |
| 801 | |
| 802 | func newFakeFile(name string, content []byte) *fakeFile { |
| 803 | return &fakeFile{name: name, size: len(content), ReadSeeker: bytes.NewReader(content)} |
| 804 | } |
| 805 | |
| 806 | func (f *fakeFile) Close() error { |
| 807 | return nil |
no outgoing calls
no test coverage detected
searching dependent graphs…