(t *testing.T)
| 320 | } |
| 321 | |
| 322 | func TestSetCommonQueryParam(t *testing.T) { |
| 323 | resp, err := tc().SetCommonQueryParam("test", "test").R().Get("/query-parameter") |
| 324 | assertSuccess(t, resp, err) |
| 325 | tests.AssertEqual(t, "test=test", resp.String()) |
| 326 | } |
| 327 | |
| 328 | func TestSetCommonQueryParams(t *testing.T) { |
| 329 | resp, err := tc().SetCommonQueryParams(map[string]string{"test": "test"}).R().Get("/query-parameter") |
nothing calls this directly
no test coverage detected
searching dependent graphs…