(t *testing.T)
| 36 | } |
| 37 | |
| 38 | func TestInvalidPackageNames(t *testing.T) { |
| 39 | for _, name := range invalidPackageNames { |
| 40 | if err := request.ValidatePackageNames(append([]string{"foo"}, name)); err == nil { |
| 41 | t.Error("names should be invalid") |
| 42 | } |
| 43 | } |
| 44 | } |
nothing calls this directly
no test coverage detected