(t *testing.T)
| 500 | } |
| 501 | |
| 502 | func TestExactValidArgs_WithInvalidCount_WithInvalidArgs(t *testing.T) { |
| 503 | c := getCommand(ExactValidArgs(2), true) |
| 504 | _, err := executeCommand(c, "three", "a", "two") |
| 505 | exactArgsWithInvalidCount(err, t) |
| 506 | } |
| 507 | |
| 508 | func TestExactValidArgs_WithInvalidArgs(t *testing.T) { |
| 509 | c := getCommand(ExactValidArgs(2), true) |
nothing calls this directly
no test coverage detected