for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
package tests
import (
"os"
"testing"
)
func TestMain(m *testing.M) {
setup()
code := m.Run()
os.Exit(code)
}