| 133 | } |
| 134 | |
| 135 | type mockFileInfo struct { |
| 136 | name string |
| 137 | size int64 |
| 138 | } |
| 139 | |
| 140 | func (m mockFileInfo) Name() string { return m.name } |
| 141 | func (m mockFileInfo) Size() int64 { return m.size } |
nothing calls this directly
no outgoing calls
no test coverage detected