yao/init_test.go
2021-09-14 12:12:07 +08:00

22 lines
271 B
Go

package main
import (
"os"
"testing"
"github.com/yaoapp/gou"
"github.com/yaoapp/xiang/global"
)
var cfg global.Config
func TestMain(m *testing.M) {
// Run test suites
exitVal := m.Run()
// we can do clean up code here
gou.KillPlugins()
os.Exit(exitVal)
}