7001ca854c
Queuing Changes and Cfg Testing * staarting * staarting * startedpush * note * save * mocking * removederrs * fixtests * cleanuperrs * newenvsetup * preppingtests * queue * mmovetocfgpassunittests * sortoutconfig * passinginteg * deps * fixtests
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)
|
|
}
|