(t *testing.T)
| 305 | } |
| 306 | |
| 307 | func TestSetCommonPathParam(t *testing.T) { |
| 308 | c := tc().SetCommonPathParam("test", "test") |
| 309 | tests.AssertNotNil(t, c.PathParams) |
| 310 | tests.AssertEqual(t, "test", c.PathParams["test"]) |
| 311 | } |
| 312 | |
| 313 | func TestAddCommonQueryParam(t *testing.T) { |
| 314 | resp, err := tc(). |
nothing calls this directly
no test coverage detected
searching dependent graphs…