NewTransportForTesting creates a transport for testing purposes
(isSslDisabled bool)
| 287 | |
| 288 | // NewTransportForTesting creates a transport for testing purposes |
| 289 | func NewTransportForTesting(isSslDisabled bool) http.RoundTripper { |
| 290 | return newTransport(isSslDisabled) |
| 291 | } |
| 292 | |
| 293 | func getNonProtectedMethods() map[string]struct{} { |
| 294 | nonProtectedMethods := make(map[string]struct{}, 4) |
no test coverage detected