22 lines
340 B
Go
22 lines
340 B
Go
package dao
|
|
|
|
import (
|
|
"go-common/app/interface/live/app-room/conf"
|
|
"go-common/library/log"
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
var testDao *Dao
|
|
|
|
func TestMain(m *testing.M) {
|
|
conf.ConfPath = "../cmd/test.toml"
|
|
if err := conf.Init(); err != nil {
|
|
panic(err)
|
|
}
|
|
log.Init(conf.Conf.Log)
|
|
defer log.Close()
|
|
testDao = New(conf.Conf)
|
|
os.Exit(m.Run())
|
|
}
|