mirror of
https://github.com/akvorado/akvorado.git
synced 2025-12-12 06:24:10 +01:00
The other changes are: - rename configure service to orchestrator service - turn DefaultConfiguration variables into functions
15 lines
278 B
Go
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)
|
|
}
|
|
}
|