57764272c3
Feature/unittests * addedmoretests * easyquerytests * fixotelinit * preppedqueriestotestcontainer * dbqueries * splitintoqueryfiles * covered the bases
17 lines
234 B
Go
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)
|
|
}
|