Files
query-orchestration/api/queryAPI/controllers_test.go
T

16 lines
310 B
Go
Raw Normal View History

package queryapi_test
2025-01-15 19:45:51 +00:00
import (
"testing"
queryapi "queryorchestration/api/queryAPI"
2025-03-05 12:05:46 +00:00
2025-01-15 19:45:51 +00:00
"github.com/go-playground/validator/v10"
"github.com/stretchr/testify/assert"
)
func TestNewControllers(t *testing.T) {
cons := queryapi.NewControllers(validator.New(), &queryapi.Services{})
2025-01-15 19:45:51 +00:00
assert.NotNil(t, cons)
}