(t *testing.T)
| 134 | } |
| 135 | |
| 136 | func TestNoArgs_WithValidOnly_WithInvalidArgs(t *testing.T) { |
| 137 | c := getCommand(MatchAll(OnlyValidArgs, NoArgs), true) |
| 138 | _, err := executeCommand(c, "a") |
| 139 | validOnlyWithInvalidArgs(err, t) |
| 140 | } |
| 141 | |
| 142 | // OnlyValidArgs |
| 143 |
nothing calls this directly
no test coverage detected