yao/init_test.go
2023-02-01 17:25:11 +08:00

22 lines
275 B
Go

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