milvus/storage/conf/conf_test.go
become-nice b8f012d8f0 Add interface of writenode
Signed-off-by: become-nice <995581097@qq.com>
2020-08-24 11:58:51 +08:00

17 lines
224 B
Go

package conf_test
import (
"fmt"
"os"
"storage/pkg/conf"
"testing"
)
func TestMain(m *testing.M) {
exitCode := m.Run()
fmt.Println("haha")
config := conf.GetConfig()
fmt.Println(config.Driver)
os.Exit(exitCode)
}