()
| 475 | func (f *fakeFileInfo) Sys() interface{} { return nil } |
| 476 | func (f *fakeFileInfo) ModTime() time.Time { return f.modtime } |
| 477 | func (f *fakeFileInfo) IsDir() bool { return f.dir } |
| 478 | func (f *fakeFileInfo) Size() int64 { return int64(len(f.contents)) } |
| 479 | func (f *fakeFileInfo) Mode() os.FileMode { |
| 480 | if f.dir { |
no outgoing calls
no test coverage detected