(t *testing.T)
| 148 | } |
| 149 | |
| 150 | func TestOnlyValidArgs_WithInvalidArgs(t *testing.T) { |
| 151 | c := getCommand(OnlyValidArgs, true) |
| 152 | _, err := executeCommand(c, "a") |
| 153 | validOnlyWithInvalidArgs(err, t) |
| 154 | } |
| 155 | |
| 156 | // ArbitraryArgs |
| 157 |
nothing calls this directly
no test coverage detected