(t *testing.T, args []string, val string)
| 302 | } |
| 303 | |
| 304 | func assertContains(t *testing.T, args []string, val string) { |
| 305 | t.Helper() |
| 306 | if !slices.Contains(args, val) { |
| 307 | t.Errorf("expected args to contain %q, got %v", val, args) |
| 308 | } |
| 309 | } |
| 310 | |
| 311 | func assertNotContains(t *testing.T, args []string, val string) { |
| 312 | t.Helper() |
no outgoing calls
no test coverage detected