(t *testing.T)
| 162 | } |
| 163 | |
| 164 | func TestArbitraryArgs_WithValid(t *testing.T) { |
| 165 | c := getCommand(ArbitraryArgs, true) |
| 166 | output, err := executeCommand(c, "one", "two") |
| 167 | expectSuccess(output, err, t) |
| 168 | } |
| 169 | |
| 170 | func TestArbitraryArgs_WithValid_WithInvalidArgs(t *testing.T) { |
| 171 | c := getCommand(ArbitraryArgs, true) |
nothing calls this directly
no test coverage detected