| 14 | ) |
| 15 | |
| 16 | type MockProgressTracking struct { |
| 17 | sync.Mutex |
| 18 | downloaded map[string]int |
| 19 | } |
| 20 | |
| 21 | func (p *MockProgressTracking) TrackProgress(src string, |
| 22 | currentSize, totalSize int64, stream io.ReadCloser) (body io.ReadCloser) { |
nothing calls this directly
no outgoing calls
no test coverage detected