(t *testing.T)
| 37 | } |
| 38 | |
| 39 | func TestNewCreateCommand_Structure(t *testing.T) { |
| 40 | cmd := NewCreateCommand() |
| 41 | |
| 42 | assert.NotNil(t, cmd) |
| 43 | assert.Equal(t, "create [command]", cmd.Use) |
| 44 | assert.Contains(t, cmd.Short, "Create alternative") |
| 45 | assert.Equal(t, "Create alternative username, port number, password, and login cache information", cmd.Long) |
| 46 | } |
| 47 | |
| 48 | func TestNewCreateCommand_Aliases(t *testing.T) { |
| 49 | cmd := NewCreateCommand() |
nothing calls this directly
no test coverage detected