(t *testing.T, args []string, val string)
| 309 | } |
| 310 | |
| 311 | func assertNotContains(t *testing.T, args []string, val string) { |
| 312 | t.Helper() |
| 313 | if slices.Contains(args, val) { |
| 314 | t.Errorf("expected args NOT to contain %q, got %v", val, args) |
| 315 | } |
| 316 | } |
| 317 | |
| 318 | func assertContainsInOrder(t *testing.T, args []string, vals ...string) { |
| 319 | t.Helper() |
no outgoing calls
no test coverage detected