Files
query-orchestration/internal/server/otel/service_test.go
T
Michael McGuinness fa95d733ca Merged in feature/shorttestsanddirtidy (pull request #26)
Add short tests and Tidy internal directories

* complete the tasks
2025-01-17 12:00:32 +00:00

17 lines
241 B
Go

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