(t *testing.T, functionName, input, got, want string)
| 12 | ) |
| 13 | |
| 14 | func assertSanitizeResult(t *testing.T, functionName, input, got, want string) { |
| 15 | t.Helper() |
| 16 | require.Equal(t, want, got, "%s(%q) should return expected output", functionName, input) |
| 17 | } |
| 18 | |
| 19 | func assertSanitizeResultWithContext(t *testing.T, functionName, context, got, want string) { |
| 20 | t.Helper() |
no outgoing calls
no test coverage detected