mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-06 19:02:18 +08:00
13 lines
246 B
Go
13 lines
246 B
Go
package indexparamcheck
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestCheckIndexValid(t *testing.T) {
|
|
scalarIndexChecker := &scalarIndexChecker{}
|
|
assert.NoError(t, scalarIndexChecker.CheckTrain(map[string]string{}))
|
|
}
|