(t *testing.T)
| 213 | } |
| 214 | |
| 215 | func TestSetCommonBasicAuth(t *testing.T) { |
| 216 | c := tc().SetCommonBasicAuth("imroc", "123456") |
| 217 | tests.AssertEqual(t, "Basic aW1yb2M6MTIzNDU2", c.Headers.Get("Authorization")) |
| 218 | } |
| 219 | |
| 220 | func TestSetCommonBearerAuthToken(t *testing.T) { |
| 221 | c := tc().SetCommonBearerAuthToken("123456") |
nothing calls this directly
no test coverage detected
searching dependent graphs…