(t *testing.T)
| 122 | } |
| 123 | |
| 124 | func TestNoArgs_WithValid_WithArgs(t *testing.T) { |
| 125 | c := getCommand(NoArgs, true) |
| 126 | _, err := executeCommand(c, "one") |
| 127 | noArgsWithArgs(err, t, "one") |
| 128 | } |
| 129 | |
| 130 | func TestNoArgs_WithValid_WithInvalidArgs(t *testing.T) { |
| 131 | c := getCommand(NoArgs, true) |
nothing calls this directly
no test coverage detected
searching dependent graphs…