func TestMain(m *testing.M) { | |
// setup | |
code := m.Run() | |
// teardown | |
os.Exit(code) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
func TestMain(m *testing.M) { | |
// setup | |
code := m.Run() | |
// teardown | |
os.Exit(code) | |
} |