Files
query-orchestration/internal/document/store/service_test.go
T
Michael McGuinness fee71e7740 Merged in feature/postprocessing (pull request #114)
Feature/postprocessing

* tests

* passtest

* fixshorttests

* mosttests

* improvingbasedockerfile

* testspeeds

* testing

* host

* canparallel

* clean

* passfullsuite

* singlepagemax

* test

* findfeatures

* findstables

* tbls

* tablestoo

* tablestoo

* lateraltests

* tableloc

* cleanup

* inlinetable

* childids

* cleanup

* tests
2025-04-22 14:40:16 +00:00

21 lines
364 B
Go

package documentstore
import (
"testing"
"queryorchestration/internal/serviceconfig"
"queryorchestration/internal/serviceconfig/queue/documentinit"
"github.com/stretchr/testify/assert"
)
type DocInitConfig struct {
serviceconfig.BaseConfig
documentinit.DocInitConfig
}
func TestNew(t *testing.T) {
svc := New(&DocInitConfig{})
assert.NotNil(t, svc)
}