fa95d733ca
Add short tests and Tidy internal directories * complete the tasks
17 lines
241 B
Go
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)
|
|
}
|