(t *testing.T)
| 218 | } |
| 219 | |
| 220 | func TestMinimumNArgs_WithLessArgs_WithValid_WithInvalidArgs(t *testing.T) { |
| 221 | c := getCommand(MinimumNArgs(2), true) |
| 222 | _, err := executeCommand(c, "a") |
| 223 | minimumNArgsWithLessArgs(err, t) |
| 224 | } |
| 225 | |
| 226 | func TestMinimumNArgs_WithLessArgs_WithValidOnly_WithInvalidArgs(t *testing.T) { |
| 227 | c := getCommand(MatchAll(OnlyValidArgs, MinimumNArgs(2)), true) |
nothing calls this directly
no test coverage detected
searching dependent graphs…