styx/balboa/main_test.go
2020-02-07 17:38:43 +01:00

17 lines
171 B
Go

package balboa
import (
"os"
"testing"
)
var (
testExitCode = 0
)
func TestMain(m *testing.M) {
defer func() { os.Exit(testExitCode) }()
testExitCode = m.Run()
}