(t *testing.T)
| 224 | } |
| 225 | |
| 226 | func TestMinimumNArgs_WithLessArgs_WithValidOnly_WithInvalidArgs(t *testing.T) { |
| 227 | c := getCommand(MatchAll(OnlyValidArgs, MinimumNArgs(2)), true) |
| 228 | _, err := executeCommand(c, "a") |
| 229 | validOnlyWithInvalidArgs(err, t) |
| 230 | } |
| 231 | |
| 232 | // MaximumNArgs |
| 233 |
nothing calls this directly
no test coverage detected