(t *testing.T)
| 293 | } |
| 294 | |
| 295 | func TestSetCommonQueryString(t *testing.T) { |
| 296 | resp, err := tc().SetCommonQueryString("test=test").R().Get("/query-parameter") |
| 297 | assertSuccess(t, resp, err) |
| 298 | tests.AssertEqual(t, "test=test", resp.String()) |
| 299 | } |
| 300 | |
| 301 | func TestSetCommonPathParams(t *testing.T) { |
| 302 | c := tc().SetCommonPathParams(map[string]string{"test": "test"}) |
nothing calls this directly
no test coverage detected
searching dependent graphs…