Files
query-orchestration/internal/document/sync/service_test.go
T
Michael McGuinness b16ff55afa Merged in feature/document (pull request #36)
Document CRUD

* doccreate

* dochashlocandget

* depsandtodo
2025-01-24 16:12:25 +00:00

14 lines
236 B
Go

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