(t *testing.T, functionName, context, got, want string)
| 17 | } |
| 18 | |
| 19 | func assertSanitizeResultWithContext(t *testing.T, functionName, context, got, want string) { |
| 20 | t.Helper() |
| 21 | require.Equal(t, want, got, "%s(%s) should return expected output", functionName, context) |
| 22 | } |
| 23 | |
| 24 | func TestSanitizeErrorMessage(t *testing.T) { |
| 25 | tests := []struct { |
no outgoing calls
no test coverage detected