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

14 lines
205 B
Go
Raw Normal View History

package document_test
import (
"queryorchestration/internal/document"
"testing"
"github.com/stretchr/testify/assert"
)
func TestNew(t *testing.T) {
svc := document.New(nil)
assert.NotNil(t, svc)
}