(t *testing.T, args []string, val string)
| 293 | } |
| 294 | |
| 295 | func assertNotContains(t *testing.T, args []string, val string) { |
| 296 | t.Helper() |
| 297 | if slices.Contains(args, val) { |
| 298 | t.Errorf("expected args NOT to contain %q, got %v", val, args) |
| 299 | } |
| 300 | } |
| 301 | |
| 302 | func assertContainsInOrder(t *testing.T, args []string, vals ...string) { |
| 303 | t.Helper() |
no outgoing calls
no test coverage detected