(folder string, file string)
| 184 | } |
| 185 | |
| 186 | func (m *testModel) testCurrentFolderFile(folder string, file string) (protocol.FileInfo, bool) { |
| 187 | f, ok, err := m.model.CurrentFolderFile(folder, file) |
| 188 | must(m.t, err) |
| 189 | return f, ok |
| 190 | } |
| 191 | |
| 192 | func (m *testModel) testCompletion(device protocol.DeviceID, folder string) FolderCompletion { |
| 193 | comp, err := m.Completion(device, folder) |
no test coverage detected