Files
akvorado/cmd/inlet_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
250 B
Go

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