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

     1  package pkg
     2  
     3  import "testing"
     4  
     5  func TestMain(m *testing.M) { // MATCH /should call os.Exit/
     6  	m.Run()
     7  }