Files
query-orchestration/internal/export/service_test.go
T

15 lines
197 B
Go
Raw Normal View History

package export_test
import (
"testing"
2025-03-05 12:05:46 +00:00
"queryorchestration/internal/export"
"github.com/stretchr/testify/assert"
)
func TestNew(t *testing.T) {
svc := export.New()
assert.NotNil(t, svc)
}