| 631 | } |
| 632 | |
| 633 | type fakeFileStatProvider struct { |
| 634 | folders map[string][]api.FileStat |
| 635 | ids map[string]string |
| 636 | } |
| 637 | |
| 638 | func (f fakeFileStatProvider) GetPathFolderId(dirPath string) (string, error) { |
| 639 | if id, ok := f.ids[dirPath]; ok { |
nothing calls this directly
no outgoing calls
no test coverage detected