(t *testing.T)
| 116 | } |
| 117 | |
| 118 | func TestNoArgs_WithArgs(t *testing.T) { |
| 119 | c := getCommand(NoArgs, false) |
| 120 | _, err := executeCommand(c, "one") |
| 121 | noArgsWithArgs(err, t, "one") |
| 122 | } |
| 123 | |
| 124 | func TestNoArgs_WithValid_WithArgs(t *testing.T) { |
| 125 | c := getCommand(NoArgs, true) |
nothing calls this directly
no test coverage detected