mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-24 22:32:15 +00:00
14 lines
179 B
Go
14 lines
179 B
Go
|
package state_test
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/tendermint/tendermint/types"
|
||
|
)
|
||
|
|
||
|
func TestMain(m *testing.M) {
|
||
|
types.RegisterMockEvidencesGlobal()
|
||
|
os.Exit(m.Run())
|
||
|
}
|