mirror of https://github.com/milvus-io/milvus.git
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))
|
|
}
|