2025-01-24 16:12:25 +00:00
|
|
|
package document_test
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
|
|
|
|
|
2025-03-05 12:05:46 +00:00
|
|
|
"queryorchestration/internal/document"
|
|
|
|
|
|
2025-01-24 16:12:25 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestNew(t *testing.T) {
|
|
|
|
|
svc := document.New(nil)
|
|
|
|
|
assert.NotNil(t, svc)
|
|
|
|
|
}
|