You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
377 B
17 lines
377 B
package http |
|
|
|
import ( |
|
"github.com/stretchr/testify/mock" |
|
"net/http" |
|
) |
|
|
|
// TestRoundTripper DEPRECATED USE net/http/httptest |
|
type TestRoundTripper struct { |
|
mock.Mock |
|
} |
|
|
|
// RoundTrip DEPRECATED USE net/http/httptest |
|
func (t *TestRoundTripper) RoundTrip(req *http.Request) (*http.Response, error) { |
|
args := t.Called(req) |
|
return args.Get(0).(*http.Response), args.Error(1) |
|
}
|
|
|