(t *testing.T)
| 312 | } |
| 313 | |
| 314 | func TestExactArgs_WithInvalidCount_WithValid(t *testing.T) { |
| 315 | c := getCommand(ExactArgs(2), true) |
| 316 | _, err := executeCommand(c, "three", "one", "two") |
| 317 | exactArgsWithInvalidCount(err, t) |
| 318 | } |
| 319 | |
| 320 | func TestExactArgs_WithInvalidCount_WithValid_WithInvalidArgs(t *testing.T) { |
| 321 | c := getCommand(ExactArgs(2), true) |
nothing calls this directly
no test coverage detected