(t *testing.T)
| 218 | } |
| 219 | |
| 220 | func TestSetCommonBearerAuthToken(t *testing.T) { |
| 221 | c := tc().SetCommonBearerAuthToken("123456") |
| 222 | tests.AssertEqual(t, "Bearer 123456", c.Headers.Get("Authorization")) |
| 223 | } |
| 224 | |
| 225 | func TestSetUserAgent(t *testing.T) { |
| 226 | c := tc().SetUserAgent("test") |
nothing calls this directly
no test coverage detected
searching dependent graphs…