(t *testing.T)
| 128 | } |
| 129 | |
| 130 | func TestNoArgs_WithValid_WithInvalidArgs(t *testing.T) { |
| 131 | c := getCommand(NoArgs, true) |
| 132 | _, err := executeCommand(c, "a") |
| 133 | noArgsWithArgs(err, t, "a") |
| 134 | } |
| 135 | |
| 136 | func TestNoArgs_WithValidOnly_WithInvalidArgs(t *testing.T) { |
| 137 | c := getCommand(MatchAll(OnlyValidArgs, NoArgs), true) |
nothing calls this directly
no test coverage detected