(t *testing.T)
| 166 | } |
| 167 | |
| 168 | func TestSetProxyURL(t *testing.T) { |
| 169 | c := tc().SetProxyURL("http://dummy.proxy.local") |
| 170 | u, err := c.Proxy(nil) |
| 171 | tests.AssertNoError(t, err) |
| 172 | tests.AssertEqual(t, "http://dummy.proxy.local", u.String()) |
| 173 | } |
| 174 | |
| 175 | func TestSetProxy(t *testing.T) { |
| 176 | u, _ := url.Parse("http://dummy.proxy.local") |
nothing calls this directly
no test coverage detected
searching dependent graphs…