Files
akvorado/cmd/configure_test.go
2022-04-01 20:21:53 +02:00

15 lines
264 B
Go

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