github.com/okex/exchain@v1.8.0/libs/tendermint/state/main_test.go (about)

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