(t *testing.T)
| 153 | } |
| 154 | |
| 155 | func TestNewSSHCommand_UserFlagDescription(t *testing.T) { |
| 156 | cmd := NewSSHCommand() |
| 157 | userFlag := cmd.Flags().Lookup("user") |
| 158 | assert.Contains(t, userFlag.Usage, "username") |
| 159 | } |
| 160 | |
| 161 | func TestNewSSHCommand_ConcurrencyFlagDescription(t *testing.T) { |
| 162 | cmd := NewSSHCommand() |
nothing calls this directly
no test coverage detected