NoArgs
(t *testing.T)
| 110 | // NoArgs |
| 111 | |
| 112 | func TestNoArgs(t *testing.T) { |
| 113 | c := getCommand(NoArgs, false) |
| 114 | output, err := executeCommand(c) |
| 115 | expectSuccess(output, err, t) |
| 116 | } |
| 117 | |
| 118 | func TestNoArgs_WithArgs(t *testing.T) { |
| 119 | c := getCommand(NoArgs, false) |
nothing calls this directly
no test coverage detected