(t *testing.T, args []string, val string)
| 286 | } |
| 287 | |
| 288 | func assertContains(t *testing.T, args []string, val string) { |
| 289 | t.Helper() |
| 290 | if !slices.Contains(args, val) { |
| 291 | t.Errorf("expected args to contain %q, got %v", val, args) |
| 292 | } |
| 293 | } |
| 294 | |
| 295 | func assertNotContains(t *testing.T, args []string, val string) { |
| 296 | t.Helper() |
no outgoing calls
no test coverage detected