Lines Matching defs:mockFileInfo
374 type mockFileInfo struct { struct
375 path string
376 size int64
377 modTime time.Time // time at which the inode's contents were modified
378 permTime time.Time // time at which the inode's permissions were modified
379 isDir bool
380 inodeNumber uint64
381 deviceNumber uint64
384 func (m *mockFileInfo) Name() string {
388 func (m *mockFileInfo) Size() int64 {
392 func (m *mockFileInfo) Mode() os.FileMode {
396 func (m *mockFileInfo) ModTime() time.Time {
400 func (m *mockFileInfo) IsDir() bool {
404 func (m *mockFileInfo) Sys() interface{} {