2025-03-17 18:14:15 +00:00
|
|
|
package queryapi_test
|
2025-01-15 19:45:51 +00:00
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"testing"
|
|
|
|
|
|
2025-03-17 18:14:15 +00:00
|
|
|
queryapi "queryorchestration/api/queryAPI"
|
2025-03-05 12:05:46 +00:00
|
|
|
|
2025-01-15 19:45:51 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func TestNewControllers(t *testing.T) {
|
2025-03-18 13:06:42 +00:00
|
|
|
cons := queryapi.NewControllers(&queryapi.Services{})
|
2025-01-15 19:45:51 +00:00
|
|
|
assert.NotNil(t, cons)
|
|
|
|
|
}
|