(t *testing.T)
| 57 | } |
| 58 | |
| 59 | func TestNewCloudCommand(t *testing.T) { |
| 60 | cmd := NewCloudCommand() |
| 61 | |
| 62 | assert.NotNil(t, cmd) |
| 63 | assert.True(t, cmd.HasSubCommands()) |
| 64 | } |
| 65 | |
| 66 | func TestRegisterCertificationTargetCommand(t *testing.T) { |
| 67 | var ( |
nothing calls this directly
no test coverage detected