| 9 | ) |
| 10 | |
| 11 | type FakeProxyReader struct { |
| 12 | FinishStub func() |
| 13 | finishMutex sync.RWMutex |
| 14 | finishArgsForCall []struct { |
| 15 | } |
| 16 | StartStub func(int64) |
| 17 | startMutex sync.RWMutex |
| 18 | startArgsForCall []struct { |
| 19 | arg1 int64 |
| 20 | } |
| 21 | WrapStub func(io.Reader) io.ReadCloser |
| 22 | wrapMutex sync.RWMutex |
| 23 | wrapArgsForCall []struct { |
| 24 | arg1 io.Reader |
| 25 | } |
| 26 | wrapReturns struct { |
| 27 | result1 io.ReadCloser |
| 28 | } |
| 29 | wrapReturnsOnCall map[int]struct { |
| 30 | result1 io.ReadCloser |
| 31 | } |
| 32 | invocations map[string][][]interface{} |
| 33 | invocationsMutex sync.RWMutex |
| 34 | } |
| 35 | |
| 36 | func (fake *FakeProxyReader) Finish() { |
| 37 | fake.finishMutex.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected