(t *testing.T)
| 188 | } |
| 189 | |
| 190 | func TestMinimumNArgs_WithValid(t *testing.T) { |
| 191 | c := getCommand(MinimumNArgs(2), true) |
| 192 | output, err := executeCommand(c, "one", "three") |
| 193 | expectSuccess(output, err, t) |
| 194 | } |
| 195 | |
| 196 | func TestMinimumNArgs_WithValid__WithInvalidArgs(t *testing.T) { |
| 197 | c := getCommand(MinimumNArgs(2), true) |
nothing calls this directly
no test coverage detected
searching dependent graphs…