(m *testing.M)
| 49 | ) |
| 50 | |
| 51 | func TestMain(m *testing.M) { |
| 52 | clitest.AutoChdir() |
| 53 | |
| 54 | svc = service_orchestrator.NewService() |
| 55 | |
| 56 | os.Exit(clitest.RunCLITest(m, server.WithServices(svc))) |
| 57 | } |
| 58 | |
| 59 | func TestNewCloudCommand(t *testing.T) { |
| 60 | cmd := NewCloudCommand() |
nothing calls this directly
no test coverage detected