(s string)
| 534 | } |
| 535 | |
| 536 | func normalize(s string) string { |
| 537 | return strings.ReplaceAll( |
| 538 | strings.ReplaceAll( |
| 539 | strings.ReplaceAll(s, " ", ""), "\n", ""), |
| 540 | "\t", "") |
| 541 | } |
| 542 | |
| 543 | func verifySourceInfoCoverage(t testing.TB, policy *Policy, ast *cel.Ast) { |
| 544 | t.Helper() |
no outgoing calls
no test coverage detected