2025-01-08 18:14:15 +00:00
|
|
|
package export_test
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
|
|
|
|
|
2025-03-05 12:05:46 +00:00
|
|
|
"queryorchestration/internal/export"
|
|
|
|
|
|
2025-01-08 18:14:15 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestNew(t *testing.T) {
|
2025-01-31 13:43:55 +00:00
|
|
|
svc := export.New()
|
2025-01-08 18:14:15 +00:00
|
|
|
assert.NotNil(t, svc)
|
|
|
|
|
}
|