(t *testing.T)
| 212 | } |
| 213 | |
| 214 | func TestMinimumNArgs_WithLessArgs_WithValid(t *testing.T) { |
| 215 | c := getCommand(MinimumNArgs(2), true) |
| 216 | _, err := executeCommand(c, "one") |
| 217 | minimumNArgsWithLessArgs(err, t) |
| 218 | } |
| 219 | |
| 220 | func TestMinimumNArgs_WithLessArgs_WithValid_WithInvalidArgs(t *testing.T) { |
| 221 | c := getCommand(MinimumNArgs(2), true) |
nothing calls this directly
no test coverage detected
searching dependent graphs…