14 lines
236 B
Go
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)
|
||
|
|
}
|