Merged in feature/testwithlogs (pull request #65)

Query Version Sync Runner

* testing

* queryversiosyncworking

* update

* tests

* fixtests
This commit is contained in:
Michael McGuinness
2025-02-14 10:56:24 +00:00
parent 477518e5eb
commit 0df3d16976
91 changed files with 1737 additions and 624 deletions
@@ -0,0 +1,15 @@
package queryversionsync_test
import (
"queryorchestration/internal/query"
"queryorchestration/internal/serviceconfig"
"testing"
"github.com/stretchr/testify/assert"
)
func TestService(t *testing.T) {
cfg := &serviceconfig.BaseConfig{}
svc := query.New(cfg)
assert.NotNil(t, svc)
}