(t *testing.T)
| 206 | } |
| 207 | |
| 208 | func TestMinimumNArgs_WithLessArgs(t *testing.T) { |
| 209 | c := getCommand(MinimumNArgs(2), false) |
| 210 | _, err := executeCommand(c, "a") |
| 211 | minimumNArgsWithLessArgs(err, t) |
| 212 | } |
| 213 | |
| 214 | func TestMinimumNArgs_WithLessArgs_WithValid(t *testing.T) { |
| 215 | c := getCommand(MinimumNArgs(2), true) |
nothing calls this directly
no test coverage detected