| 8 | ) |
| 9 | |
| 10 | type fakeRemotePatternProvider struct { |
| 11 | getPathFolderID func(dirPath string) (string, error) |
| 12 | getFolderFileStatList func(parentId string) ([]FileStat, error) |
| 13 | } |
| 14 | |
| 15 | func (f fakeRemotePatternProvider) GetPathFolderId(dirPath string) (string, error) { |
| 16 | return f.getPathFolderID(dirPath) |
nothing calls this directly
no outgoing calls
no test coverage detected