(t *testing.T, arr []string, str string)
| 79 | } |
| 80 | |
| 81 | func contains(t *testing.T, arr []string, str string) bool { |
| 82 | t.Helper() |
| 83 | |
| 84 | for _, a := range arr { |
| 85 | if a == str { |
| 86 | return true |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | return false |
| 91 | } |
no outgoing calls
no test coverage detected