0815cb35fb
Basic Lint Checks * basic
16 lines
330 B
Go
16 lines
330 B
Go
package queryservice_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
queryservice "queryorchestration/api/queryService"
|
|
|
|
"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)
|
|
}
|