(t *testing.T)
| 494 | } |
| 495 | |
| 496 | func TestExactValidArgs_WithInvalidCount(t *testing.T) { |
| 497 | c := getCommand(ExactValidArgs(2), false) |
| 498 | _, err := executeCommand(c, "three", "one", "two") |
| 499 | exactArgsWithInvalidCount(err, t) |
| 500 | } |
| 501 | |
| 502 | func TestExactValidArgs_WithInvalidCount_WithInvalidArgs(t *testing.T) { |
| 503 | c := getCommand(ExactValidArgs(2), true) |
nothing calls this directly
no test coverage detected