gitee.com/mirrors/goreporter@v0.0.0-20180902115603-df1b20f7c5d0/linters/staticcheck/testdata/CheckTestMainExit-5.go (about)

     1  package pkg
     2  
     3  import (
     4  	"os"
     5  	"testing"
     6  )
     7  
     8  func helper(m *testing.M) { os.Exit(m.Run()) }
     9  
    10  func TestMain(m *testing.M) {
    11  	helper(m)
    12  }