(url string, basicAuthUsername, basicAuthPassword, xapikeyHeader, authorizationBearer string, cookies []*http.Cookie, t *testing.T)
| 561 | } |
| 562 | |
| 563 | func httpGet(url string, basicAuthUsername, basicAuthPassword, xapikeyHeader, authorizationBearer string, cookies []*http.Cookie, t *testing.T) *http.Response { |
| 564 | t.Helper() |
| 565 | return httpRequest(http.MethodGet, url, nil, basicAuthUsername, basicAuthPassword, xapikeyHeader, authorizationBearer, "", "", cookies, t) |
| 566 | } |
| 567 | |
| 568 | func httpPost(url string, body map[string]string, cookies []*http.Cookie, t *testing.T) *http.Response { |
| 569 | t.Helper() |
no test coverage detected