2025-02-14 10:56:24 +00:00
|
|
|
package queryversionsync_test
|
|
|
|
|
|
|
|
|
|
import (
|
2025-03-05 12:05:46 +00:00
|
|
|
"testing"
|
|
|
|
|
|
2025-02-14 10:56:24 +00:00
|
|
|
"queryorchestration/internal/query"
|
|
|
|
|
"queryorchestration/internal/serviceconfig"
|
|
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestService(t *testing.T) {
|
|
|
|
|
cfg := &serviceconfig.BaseConfig{}
|
|
|
|
|
svc := query.New(cfg)
|
|
|
|
|
assert.NotNil(t, svc)
|
|
|
|
|
}
|