(t *testing.T)
| 191 | } |
| 192 | |
| 193 | func TestIsHTTPError(t *testing.T) { |
| 194 | t.Parallel() |
| 195 | |
| 196 | herr := idpsync.HTTPError{} |
| 197 | require.NotNil(t, idpsync.IsHTTPError(herr)) |
| 198 | require.NotNil(t, idpsync.IsHTTPError(&herr)) |
| 199 | |
| 200 | require.Nil(t, error(nil)) |
| 201 | } |
nothing calls this directly
no test coverage detected