(t *testing.T, expected, actual *errors.ScimError)
| 13 | } |
| 14 | |
| 15 | func assertEqualSCIMErrors(t *testing.T, expected, actual *errors.ScimError) { |
| 16 | if expected.ScimType != actual.ScimType || |
| 17 | expected.Detail != actual.Detail || |
| 18 | expected.Status != actual.Status { |
| 19 | t.Errorf("wrong scim error: expected %v, actual %v", expected, actual) |
| 20 | } |
| 21 | } |
| 22 | |
| 23 | func assertEqualStatusCode(t *testing.T, expected, actual int) { |
| 24 | if expected != actual { |
no outgoing calls
no test coverage detected
searching dependent graphs…