github.com/songshiyun/revive@v1.1.5-0.20220323112655-f8433a19b3c5/testdata/deep-exit_test.go (about)

     1  package fixtures
     2  
     3  import (
     4  	"os"
     5  	"testing"
     6  )
     7  
     8  func TestMain(m *testing.M) {
     9  	// call flag.Parse() here if TestMain uses flags
    10  	os.Exit(m.Run())
    11  }