package documentsync_test import ( documentsync "queryorchestration/internal/document/sync" "testing" "github.com/stretchr/testify/assert" ) func TestNew(t *testing.T) { svc := documentsync.New(nil, nil) assert.NotNil(t, svc) }