(t *testing.T)
| 1803 | } |
| 1804 | |
| 1805 | func TestNewFormRequest_badURL(t *testing.T) { |
| 1806 | t.Parallel() |
| 1807 | c := mustNewClient(t) |
| 1808 | _, err := c.NewFormRequest(t.Context(), ":", nil) |
| 1809 | testURLParseError(t, err) |
| 1810 | } |
| 1811 | |
| 1812 | func TestNewFormRequest_emptyUserAgent(t *testing.T) { |
| 1813 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…