package documentinit import ( "queryorchestration/internal/serviceconfig" "queryorchestration/internal/serviceconfig/queue/documentsync" "testing" "github.com/stretchr/testify/assert" ) type DocInitConfig struct { serviceconfig.BaseConfig documentsync.DocSyncConfig } func TestNew(t *testing.T) { svc := New(&DocInitConfig{}) assert.NotNil(t, svc) }