(t *testing.T)
| 362 | } |
| 363 | |
| 364 | func TestRangeArgs_WithInvalidCount_WithValid(t *testing.T) { |
| 365 | c := getCommand(RangeArgs(2, 4), true) |
| 366 | _, err := executeCommand(c, "two") |
| 367 | rangeArgsWithInvalidCount(err, t) |
| 368 | } |
| 369 | |
| 370 | func TestRangeArgs_WithInvalidCount_WithValid_WithInvalidArgs(t *testing.T) { |
| 371 | c := getCommand(RangeArgs(2, 4), true) |
nothing calls this directly
no test coverage detected