81e7223560
Text Extraction * bases * go * splitting * structure * movetoasync * movetoasync * settinguptrigger * reorder * storevent * standardisepollingvalidation * unittests * fixlint * fixlint * awscfg * generatesample * followthrough * tests * clena * store * externalidcleanup * clientid * local * baseunittests * putobjecttests * tests
23 lines
477 B
Go
23 lines
477 B
Go
package documentstore
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"queryorchestration/internal/serviceconfig"
|
|
"queryorchestration/internal/serviceconfig/queue/documentinit"
|
|
"queryorchestration/internal/serviceconfig/queue/documenttextprocess"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
type DocInitConfig struct {
|
|
serviceconfig.BaseConfig
|
|
documentinit.DocInitConfig
|
|
documenttextprocess.DocTextProcessConfig
|
|
}
|
|
|
|
func TestNew(t *testing.T) {
|
|
svc := New(&DocInitConfig{})
|
|
assert.NotNil(t, svc)
|
|
}
|