(t *testing.T)
| 187 | } |
| 188 | |
| 189 | func TestSetCommonHeader(t *testing.T) { |
| 190 | c := tc().SetCommonHeader("my-header", "my-value") |
| 191 | tests.AssertEqual(t, "my-value", c.Headers.Get("my-header")) |
| 192 | } |
| 193 | |
| 194 | func TestSetCommonHeaderNonCanonical(t *testing.T) { |
| 195 | c := tc().SetCommonHeaderNonCanonical("my-Header", "my-value") |
nothing calls this directly
no test coverage detected
searching dependent graphs…