Files
query-orchestration/internal/document/sync/service_test.go
T

14 lines
236 B
Go
Raw Normal View History

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)
}