mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 11:59:00 +08:00
17 lines
224 B
Go
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)
|
||
|
}
|