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

15 lines
221 B
Go
Raw Normal View History

package document_test
import (
"testing"
2025-03-05 12:05:46 +00:00
"queryorchestration/internal/document"
"github.com/stretchr/testify/assert"
)
2025-04-23 17:51:44 +00:00
func TestNewDocumentService(t *testing.T) {
svc := document.New(nil)
assert.NotNil(t, svc)
}