bbe6f4188e
Feature/tests * improvetests * generation * simplifiedtesting * simplifiedtesting * longfile
15 lines
221 B
Go
15 lines
221 B
Go
package document_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"queryorchestration/internal/document"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestNewDocumentService(t *testing.T) {
|
|
svc := document.New(nil)
|
|
assert.NotNil(t, svc)
|
|
}
|