mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 20:39:36 +08:00
626854cf0c
Signed-off-by: sunby <bingyi.sun@zilliz.com> Co-authored-by: yah01 <yang.cen@zilliz.com> Co-authored-by: Wei Liu <wei.liu@zilliz.com> Co-authored-by: Congqi Xia <congqi.xia@zilliz.com> Signed-off-by: sunby <bingyi.sun@zilliz.com> Co-authored-by: sunby <bingyi.sun@zilliz.com> Co-authored-by: yah01 <yang.cen@zilliz.com> Co-authored-by: Wei Liu <wei.liu@zilliz.com> Co-authored-by: Congqi Xia <congqi.xia@zilliz.com>
28 lines
443 B
Go
28 lines
443 B
Go
package meta
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
type StoreTestSuite struct {
|
|
suite.Suite
|
|
store metaStore
|
|
}
|
|
|
|
func (suite *StoreTestSuite) SetupTest() {
|
|
//kv := memkv.NewMemoryKV()
|
|
//suite.store = NewMetaStore(kv)
|
|
}
|
|
|
|
func (suite *StoreTestSuite) TearDownTest() {}
|
|
|
|
func (suite *StoreTestSuite) TestLoadRelease() {
|
|
// TODO(sunby): add ut
|
|
}
|
|
|
|
func TestStoreSuite(t *testing.T) {
|
|
suite.Run(t, new(StoreTestSuite))
|
|
}
|