mirror of
https://github.com/tendermint/tendermint.git
synced 2026-01-05 13:05:09 +00:00
16 lines
211 B
Go
16 lines
211 B
Go
package factory
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/tendermint/tendermint/types"
|
|
)
|
|
|
|
func TestMakeHeader(t *testing.T) {
|
|
MakeHeader(t, &types.Header{})
|
|
}
|
|
|
|
func TestRandomNodeID(t *testing.T) {
|
|
RandomNodeID(t)
|
|
}
|