(t *testing.T)
| 3980 | } |
| 3981 | |
| 3982 | func TestError_Error(t *testing.T) { |
| 3983 | t.Parallel() |
| 3984 | err := Error{} |
| 3985 | if err.Error() == "" { |
| 3986 | t.Error("Expected non-empty Error.Error()") |
| 3987 | } |
| 3988 | } |
| 3989 | |
| 3990 | func TestSetCredentialsAsHeaders(t *testing.T) { |
| 3991 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…