(t *testing.T)
| 274 | } |
| 275 | |
| 276 | func TestMaximumNArgs_WithMoreArgs_WithValidOnly_WithInvalidArgs(t *testing.T) { |
| 277 | c := getCommand(MatchAll(OnlyValidArgs, MaximumNArgs(2)), true) |
| 278 | _, err := executeCommand(c, "a", "b", "c") |
| 279 | validOnlyWithInvalidArgs(err, t) |
| 280 | } |
| 281 | |
| 282 | // ExactArgs |
| 283 |
nothing calls this directly
no test coverage detected