174644b63c
add openapi infra * add openapi infra Includes generated stubs and all deps * generatetolocation * basesetupoffunctionsandclient * round1controllertests * passintegrationtests * cleanupfromfullsuite * storedjson * fixjsonyaml * fixtests Approved-by: Michael McGuinness
15 lines
329 B
Go
15 lines
329 B
Go
package queryservice_test
|
|
|
|
import (
|
|
queryservice "queryorchestration/api/queryService"
|
|
"testing"
|
|
|
|
"github.com/go-playground/validator/v10"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestNewControllers(t *testing.T) {
|
|
cons := queryservice.NewControllers(validator.New(), &queryservice.Services{})
|
|
assert.NotNil(t, cons)
|
|
}
|