Files
query-orchestration/api/queryAPI/controllers_test.go
T
Michael McGuinness 555b6d420b Merged in feature/docresult (pull request #105)
Document Result Endpoint

* testing

* cleantesting

* progress

* query

* lint

* readme

* dockerclient

* api

* passtest

* tests

* test
2025-03-17 18:14:15 +00:00

16 lines
310 B
Go

package queryapi_test
import (
"testing"
queryapi "queryorchestration/api/queryAPI"
"github.com/go-playground/validator/v10"
"github.com/stretchr/testify/assert"
)
func TestNewControllers(t *testing.T) {
cons := queryapi.NewControllers(validator.New(), &queryapi.Services{})
assert.NotNil(t, cons)
}