(t *testing.T)
| 1607 | } |
| 1608 | |
| 1609 | func TestNewRequest_badURL(t *testing.T) { |
| 1610 | t.Parallel() |
| 1611 | c := mustNewClient(t) |
| 1612 | _, err := c.NewRequest(t.Context(), "GET", ":", nil) |
| 1613 | testURLParseError(t, err) |
| 1614 | } |
| 1615 | |
| 1616 | func TestNewRequest_badMethod(t *testing.T) { |
| 1617 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…