(t *testing.T)
| 326 | } |
| 327 | |
| 328 | func TestSetCommonQueryParams(t *testing.T) { |
| 329 | resp, err := tc().SetCommonQueryParams(map[string]string{"test": "test"}).R().Get("/query-parameter") |
| 330 | assertSuccess(t, resp, err) |
| 331 | tests.AssertEqual(t, "test=test", resp.String()) |
| 332 | } |
| 333 | |
| 334 | func TestSetCommonQueryParamsFromValues(t *testing.T) { |
| 335 | values := url.Values{} |
nothing calls this directly
no test coverage detected
searching dependent graphs…