mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-08 18:18:30 +08:00
22 lines
466 B
Go
22 lines
466 B
Go
package grpcqueryservice
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestParamTable(t *testing.T) {
|
|
Params.Init()
|
|
|
|
assert.NotEqual(t, Params.IndexServiceAddress, "")
|
|
t.Logf("IndexServiceAddress:%s", Params.IndexServiceAddress)
|
|
|
|
assert.NotEqual(t, Params.DataServiceAddress, "")
|
|
t.Logf("DataServiceAddress:%s", Params.DataServiceAddress)
|
|
|
|
assert.NotEqual(t, Params.MasterAddress, "")
|
|
t.Logf("MasterAddress:%s", Params.MasterAddress)
|
|
|
|
}
|