bbe6f4188e
Feature/tests * improvetests * generation * simplifiedtesting * simplifiedtesting * longfile
15 lines
210 B
Go
15 lines
210 B
Go
package export_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"queryorchestration/internal/export"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestNewExportService(t *testing.T) {
|
|
svc := export.New()
|
|
assert.NotNil(t, svc)
|
|
}
|