Files
akvorado/cmd/orchestrator_test.go
Vincent Bernat 93da599adf cmd: take configuration as a mandatory argument (+ other changes)
The other changes are:
 - rename configure service to orchestrator service
 - turn DefaultConfiguration variables into functions
2022-04-10 15:14:39 +02:00

15 lines
278 B
Go

package cmd
import (
"testing"
"akvorado/common/reporter"
)
func TestOrchestratorStart(t *testing.T) {
r := reporter.NewMock(t)
if err := orchestratorStart(r, DefaultOrchestratorConfiguration(), true); err != nil {
t.Fatalf("orchestratorStart() error:\n%+v", err)
}
}