blob: a0bdd71813932f7993a9947a192d346402f3321f [file] [edit]
package http
import (
"net/http"
"github.com/stretchr/testify/mock"
)
// Deprecated: Use [net/http/httptest] instead.
type TestRoundTripper struct {
mock.Mock
}
// Deprecated: Use [net/http/httptest] instead.
func (t *TestRoundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
args := t.Called(req)
return args.Get(0).(*http.Response), args.Error(1)
}