(t *testing.T)
| 255 | } |
| 256 | |
| 257 | func TestSetTimeout(t *testing.T) { |
| 258 | timeout := 100 * time.Second |
| 259 | c := tc().SetTimeout(timeout) |
| 260 | tests.AssertEqual(t, timeout, c.httpClient.Timeout) |
| 261 | } |
| 262 | |
| 263 | func TestSetLogger(t *testing.T) { |
| 264 | l := createDefaultLogger() |
nothing calls this directly
no test coverage detected
searching dependent graphs…