mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-08 10:08:42 +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{}))
|
|
}
|