| 9 | ) |
| 10 | |
| 11 | type FakeConnection struct { |
| 12 | MakeStub func(*http.Request, *plugin.Response, plugin.ProxyReader) error |
| 13 | makeMutex sync.RWMutex |
| 14 | makeArgsForCall []struct { |
| 15 | arg1 *http.Request |
| 16 | arg2 *plugin.Response |
| 17 | arg3 plugin.ProxyReader |
| 18 | } |
| 19 | makeReturns struct { |
| 20 | result1 error |
| 21 | } |
| 22 | makeReturnsOnCall map[int]struct { |
| 23 | result1 error |
| 24 | } |
| 25 | invocations map[string][][]interface{} |
| 26 | invocationsMutex sync.RWMutex |
| 27 | } |
| 28 | |
| 29 | func (fake *FakeConnection) Make(arg1 *http.Request, arg2 *plugin.Response, arg3 plugin.ProxyReader) error { |
| 30 | fake.makeMutex.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected