(t *testing.T)
| 174 | } |
| 175 | |
| 176 | func TestArbitraryArgs_WithValidOnly_WithInvalidArgs(t *testing.T) { |
| 177 | c := getCommand(MatchAll(OnlyValidArgs, ArbitraryArgs), true) |
| 178 | _, err := executeCommand(c, "a") |
| 179 | validOnlyWithInvalidArgs(err, t) |
| 180 | } |
| 181 | |
| 182 | // MinimumNArgs |
| 183 |
nothing calls this directly
no test coverage detected
searching dependent graphs…