14 lines
209 B
Go
14 lines
209 B
Go
|
|
package documentinit_test
|
||
|
|
|
||
|
|
import (
|
||
|
|
"queryorchestration/internal/document"
|
||
|
|
"testing"
|
||
|
|
|
||
|
|
"github.com/stretchr/testify/assert"
|
||
|
|
)
|
||
|
|
|
||
|
|
func TestNew(t *testing.T) {
|
||
|
|
svc := document.New(nil)
|
||
|
|
assert.NotNil(t, svc)
|
||
|
|
}
|