(t *testing.T)
| 368 | } |
| 369 | |
| 370 | func TestRangeArgs_WithInvalidCount_WithValid_WithInvalidArgs(t *testing.T) { |
| 371 | c := getCommand(RangeArgs(2, 4), true) |
| 372 | _, err := executeCommand(c, "a") |
| 373 | rangeArgsWithInvalidCount(err, t) |
| 374 | } |
| 375 | |
| 376 | func TestRangeArgs_WithInvalidCount_WithValidOnly_WithInvalidArgs(t *testing.T) { |
| 377 | c := getCommand(MatchAll(OnlyValidArgs, RangeArgs(2, 4)), true) |
nothing calls this directly
no test coverage detected
searching dependent graphs…