Files
query-orchestration/internal/otel/service_test.go
T
Michael McGuinness 57764272c3 Merged in feature/unittests (pull request #9)
Feature/unittests

* addedmoretests

* easyquerytests

* fixotelinit

* preppedqueriestotestcontainer

* dbqueries

* splitintoqueryfiles

* covered the bases
2025-01-08 18:14:15 +00:00

17 lines
234 B
Go

package otel_test
import (
"context"
"queryorchestration/internal/otel"
"testing"
"github.com/stretchr/testify/assert"
)
func TestNew(t *testing.T) {
ctx := context.Background()
svc := otel.New(ctx)
assert.NotNil(t, svc)
}