(t *testing.T)
| 318 | } |
| 319 | |
| 320 | func TestExactArgs_WithInvalidCount_WithValid_WithInvalidArgs(t *testing.T) { |
| 321 | c := getCommand(ExactArgs(2), true) |
| 322 | _, err := executeCommand(c, "three", "a", "two") |
| 323 | exactArgsWithInvalidCount(err, t) |
| 324 | } |
| 325 | |
| 326 | func TestExactArgs_WithInvalidCount_WithValidOnly_WithInvalidArgs(t *testing.T) { |
| 327 | c := getCommand(MatchAll(OnlyValidArgs, ExactArgs(2)), true) |
nothing calls this directly
no test coverage detected