github.com/pokt-network/tendermint@v0.32.11-0.20230426215212-59310158d3e9/state/main_test.go (about)

     1  package state_test
     2  
     3  import (
     4  	"os"
     5  	"testing"
     6  
     7  	"github.com/tendermint/tendermint/types"
     8  )
     9  
    10  func TestMain(m *testing.M) {
    11  	types.RegisterMockEvidencesGlobal()
    12  	os.Exit(m.Run())
    13  }