(t *testing.T)
| 356 | } |
| 357 | |
| 358 | func TestRangeArgs_WithInvalidCount(t *testing.T) { |
| 359 | c := getCommand(RangeArgs(2, 4), false) |
| 360 | _, err := executeCommand(c, "a") |
| 361 | rangeArgsWithInvalidCount(err, t) |
| 362 | } |
| 363 | |
| 364 | func TestRangeArgs_WithInvalidCount_WithValid(t *testing.T) { |
| 365 | c := getCommand(RangeArgs(2, 4), true) |
nothing calls this directly
no test coverage detected