go-common/app/interface/main/dm2/service/service_test.go
2019-04-22 18:49:16 +08:00

30 lines
392 B
Go

package service
import (
"flag"
"os"
"path/filepath"
"testing"
"go-common/app/interface/main/dm2/conf"
)
var (
svr *Service
)
func TestMain(m *testing.M) {
var (
err error
)
dir, _ := filepath.Abs("../cmd/dm2-test.toml")
if err = flag.Set("conf", dir); err != nil {
panic(err)
}
if err = conf.Init(); err != nil {
panic(err)
}
svr = New(conf.Conf)
os.Exit(m.Run())
}