(t *testing.T)
| 275 | } |
| 276 | |
| 277 | func TestDebugLog(t *testing.T) { |
| 278 | c := tc().EnableDebugLog() |
| 279 | tests.AssertEqual(t, true, c.DebugLog) |
| 280 | |
| 281 | c.DisableDebugLog() |
| 282 | tests.AssertEqual(t, false, c.DebugLog) |
| 283 | } |
| 284 | |
| 285 | func TestSetCommonCookies(t *testing.T) { |
| 286 | headers := make(http.Header) |
nothing calls this directly
no test coverage detected
searching dependent graphs…