(t *testing.T)
| 168 | } |
| 169 | |
| 170 | func TestArbitraryArgs_WithValid_WithInvalidArgs(t *testing.T) { |
| 171 | c := getCommand(ArbitraryArgs, true) |
| 172 | output, err := executeCommand(c, "a") |
| 173 | expectSuccess(output, err, t) |
| 174 | } |
| 175 | |
| 176 | func TestArbitraryArgs_WithValidOnly_WithInvalidArgs(t *testing.T) { |
| 177 | c := getCommand(MatchAll(OnlyValidArgs, ArbitraryArgs), true) |
nothing calls this directly
no test coverage detected