(t *testing.T)
| 306 | } |
| 307 | |
| 308 | func TestExactArgs_WithInvalidCount(t *testing.T) { |
| 309 | c := getCommand(ExactArgs(2), false) |
| 310 | _, err := executeCommand(c, "a", "b", "c") |
| 311 | exactArgsWithInvalidCount(err, t) |
| 312 | } |
| 313 | |
| 314 | func TestExactArgs_WithInvalidCount_WithValid(t *testing.T) { |
| 315 | c := getCommand(ExactArgs(2), true) |
nothing calls this directly
no test coverage detected